    /*
  	function MM_jumpMenu(targ,selObj,restore){ //v3.0
  	  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  	  if (restore) selObj.selectedIndex=0;
  	}
  	*/
  	function submitForm() {
  		myform = document.form1;
        error_msg = '';

  		if ( myform.contactName.value == '') {
  			 //alert("Please enter your name.");
  			 //myform.contactName.focus();
  			 //return;
             error_msg = error_msg + '- Please enter your name.\n'; 
  		}

  		if ( myform.contactEmail.value.indexOf("@") == "-1" || 
  		      myform.contactEmail.value.indexOf(".") == "-1" || 
  			  myform.contactEmail.value == "" ) {
  			 //alert('Please enter a valid e-mail address.');				
  			 //myform.contactEmail.focus();
  			 //return;
             error_msg = error_msg + '- Please enter a valid e-mail address.\n';
  		}			

  		if ( myform.contactComment.value == '') {
  			 //alert("Please enter some comments.");
  			 //myform.contactComment.focus();
  			 //return;
             error_msg = error_msg + '- Please enter some comments.\n';
  		}

  		if ( myform.TextBoxUserCode.value == '') {
  			 //alert("To send this form, you must type in the verification text.");
  			 //myform.TextBoxUserCode.focus();
  			 //return;
             error_msg = error_msg + '- To send this form, you must type in the verification text.\n';
  		}
  		
  		if ( myform.contactEmail.value.indexOf("@")!= myform.contactEmail.value.lastIndexOf("@")){
  			 //alert('Please enter only one e-mail address.');				
  			 //myform.contactEmail.focus();
  			 //return;
             error_msg = error_msg + '- Please enter only one e-mail address.\n'; 
  		}			

        if ( error_msg.length > 0 )  {
            alert(error_msg);
            return;
        }


/*
       var error = "";
       var count = 0;
       for (var i = 0; i < myform.elements.length; i++)
           { if (myform.elements[i].type == "checkbox")
                { if (myform.elements[i].checked == true)
                    count++;
                }
            }

       if (count == 0) {
         alert ("Please select at least one site section.\n");
         return;
       }
*/

  		myform.submit();
  	}
  //-->


