var say_this = "One moment please...";
var myTimer;

<!-- Begin
var IE = document.all?true:false;
if (!IE) document.captureEvents(Event.MOUSEMOVE)
document.onmousemove = getMouseXY;
var tempX = 0;
var tempY = 0;
function getMouseXY(e) {
if (IE) { // grab the x-y pos.s if browser is IE
tempX = event.clientX + document.body.scrollLeft;
tempY = event.clientY + document.body.scrollTop;
}
else {  // grab the x-y pos.s if browser is NS
tempX = e.pageX;
tempY = e.pageY;
}  
if (tempX < 0){tempX = 0;}
if (tempY < 0){tempY = 0;}  
//document.Show.MouseX.value = tempX;
//document.Show.MouseY.value = tempY;
return true;
}
//  End -->


if (document.layers)
 {
 document.write('<layer name="allsongs3" position="absolute" z-index="90" visibility="hidden"></layer>');
 }                            
 else if (document.all)
 {
 document.write('<div id="allsongs3" style="position:absolute;visibility:hidden;"></div>');
 }
 else if (document.getElementById)
 {
 document.write('<div id="allsongs3" style="position:absolute;visibility:hidden;"></div>');
 }

function closeStatus() {
clearTimeout(myTimer);

 if (document.layers)
  {
  document.layers.allsongs3.visibility = "hidden";
  }
  else if (document.all)
  {
  document.all.allsongs3.style.visibility = "hidden";
  }
  else if (document.getElementById)
  {
  document.getElementById("allsongs3").style.visibility = "hidden";
  }

}

function playSong(soundFile)
{
closeStatus();

if (soundFile.indexOf(",") > 0)
 {
 var sounds = soundFile.split(",");
 soundFile = sounds[Math.floor(Math.random()*sounds.length)];
 }

var embed_tag = '<embed src="' + soundFile + '" autostart="true" loop="false" width=0 height=0 hidden="true"></embed>';
var notice_tag = '<TABLE BORDER=1 BORDERCOLOR="#000000" CELLPADDING=2 CELLSPACING=0><TR><TD ALIGN=CENTER BGCOLOR="#FFFFFF"><FONT COLOR="#000000"><B>' + say_this + '</B></FONT></TD></TR></TABLE>';

 if (document.layers)
  {
  document.allsongs3.document.write(notice_tag);
  document.allsongs3.document.write(embed_tag);
  document.allsongs3.document.close();
  document.allsongs3.left = tempX;
  document.allsongs3.top = tempY;
  document.layers.allsongs3.visibility = "visible";
  }
  else if (document.all)
  {
  allsongs3.innerHTML = notice_tag;
  allsongs3.innerHTML += embed_tag;
  document.all.allsongs3.style.posLeft = tempX;
  document.all.allsongs3.style.top = tempY;
  document.all.allsongs3.style.visibility = "visible";
  }
  else if (document.getElementById)
  {
  var newlayer = document.getElementById("allsongs3");
  newlayer.innerHTML = notice_tag;
  newlayer.innerHTML += embed_tag;
  document.getElementById("allsongs3").style.left = tempX;
  document.getElementById("allsongs3").style.top = tempY;
  document.getElementById("allsongs3").style.visibility = "visible";
  }

myTimer = setTimeout('closeStatus();', 2000);
}
