function DHTMLSound(surl,probability) 
{
	var randomnumber=1+Math.floor(Math.random()*probability);
	//alert(randomnumber)
	if (randomnumber==1)
	{
		document.getElementById("dummyspan").innerHTML = '<object height="1" width="1" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"><param value="'+surl+'" name="movie"/><param value="#777777" name="bgcolor"/><param value="high" name="quality"/><param value="samedomain" name="allowscriptaccess"/><embed height="1" width="1" allowscriptaccess="samedomain" quality="high" bgcolor="#777777" src="'+surl+'" pluginspage="http://www.adobe.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash"/><noembed> </noembed></object>';
		/*document.all.sound.src = surl;*/

	}
}
function RandomPlay(probability,delay) 
{
	var num=1+Math.floor(10*Math.random());
	//alert(num);
	setTimeout("DHTMLSound('http://www.howiesparty.com/halloween/sound1/swf/"+num+".swf',"+probability+")",delay);
}