
var playing=0

document.write('<div style="position:absolute;left: -100 ;top: -100;"><IFRAME SRC="" scrolling="no" name=player WIDTH=10 HEIGHT=10></IFRAME></div>')

function outerLoop()
{
if (document.game.talkToMe()!=0)
{
if (!playing)
{
parent.player.document.write("<embed src=music/IronMaiden"+(Math.floor(Math.random()*3))+".mid autostart=true hidden=true loop=true></embed>")
parent.player.document.close()
playing=1
}
}
else
{
if (playing)
{
parent.player.document.write("")
parent.player.document.close()
playing=0
}    
}
setTimeout("outerLoop()",1000)
}


function startit()
{
var url=""+top.location
if (url.split("http://")!=url)
{
setTimeout("outerLoop()",60000)
}
else
{
setTimeout("outerLoop()",2000)  
}
}


document.onload=startit()
