song = new Array(17);
title = new Array(17);
song[0] ='clardlun.mid'
song[1] ='bmoonl1.mid'
song[2] ='walking_.mid'
song[3] ='shepmoon.mid'
song[4] ='florluna.mid'
song[5] ='maninmn.mid'
song[6] ='everyonesgonetothemoon.mid'
song[7] ='to_the_moon_and_back.mid'
song[8] ='mecano_luna.mid'
song[9] = "mondtanz.mid"
song[10] = 'luna_smashing_pumpkins.mid'
song[11] = 'moondust.mid'
song[12] = 'whole_of_the_moon.mid'
song[13] = 'bluemoon1.mid'
song[14] = 'monkberr.mid'
song[15] = 'rolling_stones_moonlitemile.mid'
song[16] = 'a_better_moon.mid'

title[0] = 'Au Clair de Lune by Debussy'
title[1] = 'Moonlight Sonata by Ludwig Von Beethoven'
title[2] = 'Walking on the Moon by The Police'
title[3] = "Shepherd Moons by Enya"
title[4] = "Flor d'Luna or Moonflower by Santana"
title[5] = 'Man In The Moon by  Erasure'
title[6] = "Everyone's Gone to the Moon by Jonathan Winter"
title[7] = 'To the Moon and Back by  Savage Garden'
title[8] = 'Hejo De La Luna by Mecano'
title[9] = "Mondtanz by Blackmore's Night"
title[10] = 'Luna by Smashing Pumpkins'
title[11] = 'Moondust by Tom Barabas'
title[12] = 'The Whole of the Moon by the Waterboys'
title[13] = 'Blue Moon by Richard Rodgers & Lorenz Hart'
title[14] = 'Monkberry Moon Delight by Paul McCartney'
title[15] = 'Moonlite Mile by The Rolling Stones'
title[16] = 'Better Moon by Ian Anderson'

index = Math.floor(Math.random() * song.length);document.write("<DL>\n");
document.write("<EMBED SRC="+song[index]+" width=2 height=2 autostart=true loop=infinite BGCOLOR='#000000'");
document.write(' TEXT="#FFFFFF">');
document.write("<BR>");
document.write("Now Playing: ");
document.write("<BR><font size=3 color=pink face=Arial>");
document.write(title[index]);
document.write("</font>")
document.write("</DL>\n");
