function checkForm()
{
   if(document.contact.name.value == "")
   {
      alert("Please fill in your name");
      document.contact.name.focus();
      return false;
   }
      
	    
   if(document.contact.email.value == "")
   
   {
      alert("Please fill in your email");
      document.contact.email.focus();
      return false;
   } 
     
   if(document.contact.email.value.indexOf("@") == -1 || 
      document.contact.email.value.indexOf(".") == -1 ||
      document.contact.email.value.length < 6)
   {
      alert("Not a valid email address");
      document.contact.email.focus();
      return false;  
   }
   
   if(document.contact.subject.value == "")
   
   {
      alert("Please fill in your subject");
      document.contact.subject.focus();
      return false;
   }
   
   if(document.contact.message.value == "")
   
   {
      alert("Please fill in your messageß");
      document.contact.message.focus();
      return false;
   }
}

function load1(form) {
     var url = form.Llist_1.options[form.Llist_1.selectedIndex].value;
     if (url != '') location.href = url;
     return false;
}
   
   
