function ValidateEmailForm(){

var name;
var telephone;
var email;
var emailconfirm;
var comments;

if(document.contactForm.name.value == "") {
window.alert("Please provide a contact name.")
return false;}
		
		
if(document.contactForm.telephone.value == "") {
window.alert("Please provide us with a daytime telephone number where we may contact you.")
return false;}
		
					
if(document.contactForm.email.value == "") {
window.alert("You must provide a valid email address.")
return false;}

if(document.contactForm.emailconfirm.value == "") {
window.alert("Please confirm your email address.")
return false;}
					
if(document.contactForm.comments.value == "") {
window.alert("You have not typed your message.")
return false;}	

if (document.contactForm.comments.value.length > 2000) {
window.alert("Your message is too long. The field is limited to 2000 characters.") 
return false;}
			

else { return true; }
}



function startList() {
   if (document.all && document.getElementById) {
      navRoot = document.getElementById("menunav");
      for (i=0; i<navRoot.childNodes.length; i++) {
         node = navRoot.childNodes[i];
         if (node.nodeName == "LI") {
            node.onmouseover = function() { this.className += " over"; }
            node.onmouseout = function() { this.className = this.className.replace(" over", ""); }
         }
      }
   }
} 



function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
