function newWindow(soundlink, text)
{
	document.write('<HTML>\n');
	document.write('<BODY BGCOLOR=#000000 TEXT=#FFDEAD LINK=#FFDEAD>\n');
	document.write('<center><A HREF=\"'+soundlink+'\">Click here</a> if the music doesn\'t start.\n');
	document.write('<br>\n');
	document.write('<object>\n');
	document.write('<embed src=\"'+soundlink+'\" bgcolor=\"#000000\"></embed>\n');
	document.write('</object><br>\n');
	document.write(text+'</center>\n');
	document.write('</BODY>\n');
	document.write('</HTML>');
}
