// ActionScript Document
function checkform(theForm)
{
     if (theForm.name.value == "")
  {
    alert("Please enter your Name.");
    theForm.name.focus(); 
	return (false);
  }
  if (theForm.emailadd.value == "")
  {
	alert("Please enter your Email address.");
    theForm.emailadd.focus();
    return (false);  
  }
   if (theForm.emailadd.value != "")
  {
 if (theForm.emailadd.value.indexOf ('@',0) == -1 || theForm.emailadd.value.indexOf ('.',0) == -1)
   {
    alert("Please enter valid Email address.");
    theForm.emailadd.focus();
    return (false);
  }
  if (theForm.organization.value == "")
  {
	alert("Please enter your Organization's Name.");
    theForm.organization.focus();
    return (false);  
  }
  if (theForm.address.value == "")
  {
	alert("Please enter your Address.");
    theForm.address.focus();
    return (false);  
  }
    if (theForm.comments.value == "")
  {
	alert("We would like to hear from you. Please Provide your comments/feedback/suggestions.");
    theForm.comments.focus();
    return (false);  
  }
  }
 return (true);
}
