// JavaScript Document
function testForm( registration )

{
  // see http://www.thesitewizard.com/archive/validation.shtml
  // for an explanation of this script and how to use it on your
  // own website

  // ** Skip **
    if (contact.Name.value == "") {
    alert( "Please enter your Name." );
   contact.Name.focus();
    return false ;
  }

  
              if (contact.Email.value == "") {
    alert( "Please enter your Email." );
    contact.Email.focus();
    return false ;
  }
  
    if (contact.Message.value == "") {
    alert( "Please enter a Message." );
    contact.Message.focus();
    return false ;
  }
  

         
	
		
  // ** END **
  return true ;
}
