<!--
function valid(form) {
  if (form.name.value == "")  	{
    	alert("I need your name.");
    	form.name.focus();
    	return false;
  		} 

  else if (form.email.value == "") 	{
    	alert("Your e-mail address too, in case I wish to contact you.");
    	form.email.focus();
    	return false;
    		}

  else if (form.foundthru.value == "") 	{
      	alert("Please tell me how you found out about my website.");
      	form.foundthru.focus();
      	return false;
			}

  else if (form.comment.value == "") 	{
      	alert("Say something, otherwise what's the point?");
      	form.comment.focus();
      	return false;
			}
			
	else 
	{ return true; }
}
//-->