function validateForm(){   if ( document.getElementById('realname').value == "" ) {     alert ( "You must enter your name." );	 document.getElementById('realname').focus();	 return false;  }  if ( document.getElementById('email').value == "" ) {     alert ( "You must enter your email address." );	 document.getElementById('email').focus();	 return false;  }  if ( document.getElementById('Comments').value == "" ) {     alert ( "You must enter something into the Questions, Comments, or Suggestions area." );	 document.getElementById('Comments').focus();	 return false;  }    nmbr = document.getElementById('verifying').value;  if ( document.getElementById('verify').value == nmbr ) {     document.getElementById("contactform").setAttribute("action","http://www.mountainlaurelbandb.com/cgi-bin/verify.pl");  } else {    alert ( "You must correctly answer the 'Challenge' to submit this form." );		document.getElementById('verify').value = "";		document.getElementById('verify').focus();	 return false;  }  return true;}function getVerifying(){ nmbr = Math.random();  nmbr = Math.round(nmbr * 1000);  document.getElementById('verifying').value = nmbr;}