function PlaySound(url) {
  document.all.sound.src = url;
}
function EvalSound(soundobj){
  var thissound= eval("document."+soundobj);
  thissound.Play();
}
function EvalSound2(soundobj){
  var thissound=document.getElementById(soundobj);
  thissound.Play();
}
function EvalSound3(soundobj){
 var thissound= eval("document."+soundobj);
 try {
     thissound.Play();
 }
 catch (e) {
     thissound.DoPlay();
 }
}
function DHTMLSound(surl) {
  document.getElementById("dummyspan").innerHTML="<embed src='"+surl+"' hidden=true autostart=true loop=false>";
}

var newwindow;

function poptastic(url){	newwindow=window.open(url,'name','height=300,width=820,resizable=no,scrollbars=no,toolbar=no,menubar=no,location=no,status=no,directories=no,top=50');	if (window.focus) {newwindow.focus()}}