function music1()
{

var MSIE=navigator.userAgent.indexOf("MSIE");
var NETS=navigator.userAgent.indexOf("Netscape");
var xx;
xx=Math.floor(Math.random()*10+1);
if(MSIE>-1) 
{
	if (xx<=8)
	{
		if(xx>=6)
		{
			document.write("<BGSOUND SRC=gioconda.mid>");
		}
		else
		{
			if(xx>=4)
				document.write("<BGSOUND SRC=alhambra.mid>");
			else
				document.write("<BGSOUND SRC=magic.mid>");
		}
	}
	else
		document.write("<BGSOUND SRC=cestlavie.mid>");
}/*an MSIE*/
else/*NETSCAPE*/
{
	
	if (xx<=8)
	{
		if(xx>=6)
		{	
			document.write("<EMBED SRC=gioconda.mid AUTOSTART=TRUE HIDDEN=true>");
		}
		else
		{
			if(xx>=4)
				document.write("<EMBED SRC=alhambra.mid AUTOSTART=TRUE HIDDEN=true>");
			else
				document.write("<EMBED SRC=magic.mid AUTOSTART=TRUE HIDDEN=true>");
		}
	}
	else
		document.write("<EMBED SRC=cestlavie.mid AUTOSTART=TRUE HIDDEN=true>");
}/*netscape*/

}