song = new Array(14);
title = new Array(14);
song[0] ='clardlun.mid'
song[1] ='thatolddevilmoon.mid'
song[2] ='madmon.mid'
song[3] ='moon_bou.mid'
song[4] ='a_better_moon.mid'
song[5] ='nicks_s_-_sister_moon.mid'
song[6] ='moondanc.mid'
song[7] ='shadowofthemoon.mid'
song[8] ='mecano_luna.mid'
song[9] = 'mondtanz.mid'
song[10] = 'luna_smashing_pumpkins.mid'
song[11] = 'kuzmin_belaaluna.mid'
song[12] = 'moonfeelright.mid'
song[13] = 'undermoon.mid'

title[0] = 'Au Clair de Lune by Debussy'
title[1] = 'That Old Devil Moon by E.Y. Yip, Harburg and Burton Lane'
title[2] = 'Mad Man Moon by Genesis'
title[3] = 'Moon Over Bourbon Street by Sting'
title[4] = 'A Better Moon by Ian Anderson (from "The Secret Language of Birds")'
title[5] = 'Sisters of the Moon by Stevie Nicks'
title[6] = 'Moondance by Van Morrison'
title[7] = "Shadow of the Moon by Blackmore's Night"
title[8] = 'Hejo De La Luna by Mecano'
title[9] = "Mondtanz by Blackmore's Night"
title[10] = 'Luna by Smashing Pumpkins'
title[11] = 'White Moon by Kuzmin Vladimir'
title[12] = 'Moonlight Feels Right by Starbuck'
title[13] = 'Under the Moon by Michael D. Walthius'


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");