<!--

function findURL(form){
   var URL = document.form.site.options[document.form.site.selectedIndex].value;
   window.location.href = URL;
}

function trim(str) {
  while(str.charAt(0) == " ") {
    str = str.substr(1, str.length);
  }
  while(str.charAt(str.length-1) == " ") {
    str = str.substr(0, str.length - 1);
  }
  return str;
}

function checkFields() {
  var temp;
  temp = document.thisForm.email;
  if(trim(temp.value).length == 0 || temp.value == "your email")
  {
    alert("Put in your email address, chief.");
    temp.focus();
    return false;
  }
    else{
    temp2 = temp.value.match(/^(\S+@((\d{1,3}(\.\d{1,3}){3})|(\S+\.[a-zA-Z]{2,3})))$/);
    if(temp2 == null){
      alert("Your address seems invalid. Please try again.");
      return false;
    }
  } 
  return true;
}

function PopUpTiny(url) {
   window.open(url,"","toolbar=no,scrollbars=no,status=yes,location=no,resizable=no,menubar=no,width=200,height=250");
}

function PopUpSmall(url) {
   window.open(url,"","toolbar=no,scrollbars=no,status=yes,location=no,resizable=no,menubar=no,width=500,height=300");
}

function PopUpMed(url) {
   window.open(url,"","toolbar=no,scrollbars=yes,status=yes,location=no,resizable=yes,menubar=no,width=550,height=500");
}

function PopUpDemo(url) {
   window.open(url,"","toolbar=no,scrollbars=no,status=no,location=yes,resizable=no,menubar=yes,width=600,height=340,left=50,top=50,screenX=50,screenY=50");
}


function PopUpDemoOrderMusic(url) {
   window.open(url,"","toolbar=no,scrollbars=no,status=no,location=yes,resizable=yes,menubar=yes,width=600,height=450,left=50,top=50,screenX=50,screenY=50");
}




//-->