startList = function() {if (document.all&&document.getElementById) {navRoot = document.getElementById("the_nav");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", "");   }   }  } }}window.onload=startList;function checkForm() {  //alert('Running form validation Javascript...');  theMsg = 'Please fill in all fields marked with *.';  if (document.contactform.name.value.length == 0) {   alert(theMsg);   return false;  }  if (document.contactform.address.value.length == 0) {   alert(theMsg);   return false;  }  if (document.contactform.phone1.value.length == 0) {   alert(theMsg);   return false;  }  if (document.contactform.email.value.length == 0) {   alert(theMsg);   return false;  }  if (document.contactform.question.value.length == 0) {   alert(theMsg);   return false;  }  if (document.contactform.type.value == 'none') {   alert(theMsg);   return false;  }  return true;}