function ShowAllSongs() {
   document.write('<select size="1" name="Music">');
   document.write('<option selected value="None">None</option>');
   document.write('<option value="None">- - - - - - - - -</option>');
   document.write('<option value="None">Love MIDIs');
   document.write('<option value="ave.mid">- Ave Maria</option>');
   document.write('<option value="bride.mid">- Bride Chorus</option>');
   document.write('<option value="color.mid">- Colors of The Wind</option>');
   document.write('<option value="evergrn.mid">- Evergreen</option>');
   document.write('<option value="every.mid">- Every Thing I Do</option>');
   document.write('<option value="havitold.mid">- Have I Told You Lately That I Love You</option>');
   document.write('<option value="jesu.mid">- Jesu, Joy of Man\'s Desire</option>');
   document.write('<option value="night.mid">- Music of The Night</option>');
   document.write('<option value="power.mid">- Power of Love</option>');
   document.write('<option value="rondeau.mid">- Rondeau (Masterpiece Theatre)</option>');
   document.write('<option value="trumpet.mid">- Trumpet Voluntary</option>');
   document.write('<option value="wedmarch.mid">- Wedding March</option>');
   document.write('<option value="None">');
   document.write('<option value="None">English/Chinese Love Songs');
   document.write('<option value="chinesesong.php?1">- I Don\'t Believe It');
   document.write('<option value="chinesesong.php?2">- Can You Tell Me Now');
   document.write('<option value="chinesesong.php?3">- I\'ll Give You All My Life');
   document.write('<option value="chinesesong.php?4">- It Will Be Alright');
   document.write('<option value="chinesesong.php?5">- I Will Be Waiting');
   document.write('<option value="chinesesong.php?6">- Just Waiting For You');
   document.write('<option value="chinesesong.php?7">- Love Aren\'t Gonna Find Me');
   document.write('<option value="chinesesong.php?8">- Love You So Much');
   document.write('<option value="chinesesong.php?9">- Only Love Is Real');
   document.write('<option value="chinesesong.php?10">- On This Quiet Night');
   document.write('<option value="chinesesong.php?11">- Water Stream');
   document.write('<option value="chinesesong.php?12">- We Find Love So True Always');
   document.write('<option value="chinesesong.php?13">- Wonderful World');
   document.write('<option value="chinesesong.php?14">- You The One');
   document.write('</select>');
}

function ChangeSong() {
   var Song = document.MusicForm.Music.options[document.MusicForm.Music.selectedIndex].value;

   if(Song != 'None') {
      var URL;

      if(Song.search("chinesesong.php") != -1) {
         Start = Song.search("php") + 4;
         End = Song.length;
         SongID = Song.substring(Start, End);
         URL = 'http://www.card2u.com.my/realplayer.php?' + SongID;
      }
      else {
         URL = 'http://www.card2u.com.my/player.php?' + Song;
      }

      window.location = URL;
   }
}

function ShowAllSongs2() {
   document.write('<form name="MusicForm">');
   document.write('<select size="1" name="Music" onchange="ChangeSong()">');
   document.write('<option value="None">Change Song');
   document.write('<option value="None">- - - - - - - - -');
   document.write('<option value="None">Love MIDIs');
   document.write('<option value="ave.mid">- Ave Maria');
   document.write('<option value="bride.mid">- Bride Chorus');
   document.write('<option value="color.mid">- Colors of The Wind');
   document.write('<option value="evergrn.mid">- Evergreen');
   document.write('<option value="every.mid">- Every Thing I Do');
   document.write('<option value="havitold.mid">- Have I Told You Lately That I Love You');
   document.write('<option value="jesu.mid">- Jesu, Joy of Man\'s Desire');
   document.write('<option value="night.mid">- Music of The Night');
   document.write('<option value="power.mid">- Power of Love');
   document.write('<option value="rondeau.mid">- Rondeau (Masterpiece Theatre)');
   document.write('<option value="trumpet.mid">- Trumpet Voluntary');
   document.write('<option value="wedmarch.mid">- Wedding March');
   document.write('<option value="None">');
   document.write('<option value="None">English/Chinese Love Songs');
   document.write('<option value="chinesesong.php?1">- I Don\'t Believe It');
   document.write('<option value="chinesesong.php?2">- Can You Tell Me Now');
   document.write('<option value="chinesesong.php?3">- I\'ll Give You All My Life');
   document.write('<option value="chinesesong.php?4">- It Will Be Alright');
   document.write('<option value="chinesesong.php?5">- I Will Be Waiting');
   document.write('<option value="chinesesong.php?6">- Just Waiting For You');
   document.write('<option value="chinesesong.php?7">- Love Aren\'t Gonna Find Me');
   document.write('<option value="chinesesong.php?8">- Love You So Much');
   document.write('<option value="chinesesong.php?9">- Only Love Is Real');
   document.write('<option value="chinesesong.php?10">- On This Quiet Night');
   document.write('<option value="chinesesong.php?11">- Water Stream');
   document.write('<option value="chinesesong.php?12">- We Find Love So True Always');
   document.write('<option value="chinesesong.php?13">- Wonderful World');
   document.write('<option value="chinesesong.php?14">- You The One');
   document.write('</select>');
   document.write('</form>');
}


