<!--

  function CheckContact( )
  {
	
	if ( document.contact.strEmail.value == '') {
		alert("You must enter a valid email address.");
		return false;
	}

	if ( !(/^(([a-zA-Z0-9_\.\-]{2,})+)*@(([a-zA-Z0-9_\.\-]{2,})+)*(\.\w{2,3})+$/.test(document.contact.strEmail.value)) ){
		alert("You must enter a valid email address.");
		return false;
	}
  

    if( document.contact.txtComments.value == "" )
    {
      alert("You must enter a comment.");     
      return false;
    }

    return true;
  }




// -->