var dt=new Date();
var monthname=new Array("January","February","March","April","May","June","July","August","September","October","November","December");
//Ensure correct for language. English is "January 1, 2004"
var TODAY = monthname[dt.getMonth()] + " " + dt.getDate() + ", " + dt.getFullYear();

function Sound() {
	if (document.all) { document.all.sound.src = "click.wav"; }
}

document.write('<div id="soundlocation" style="left: -50px; position: absolute; top: 5px;">');
document.write('<bgsound id="sound" />');
document.write('</div>');
