function CheckForm()
{
     myform=document.frmContact;
	 
	// Check that they have entered a firstname//
     if (! myform.firstName.value){
          myform.firstName.value=prompt("You forgot your first name. Please enter it below.","");
          if (myform.firstName.value=="null"){
               myform.firstName.value="";
          }
          return 0;

         
     }

	// Check that they have entered a last name//
     if (! myform.lastName.value){
          myform.lastName.value=prompt("You forgot your last name. Please enter it below.","");
          if (myform.lastName.value=="null"){
               myform.lastName.value="";
          }
          return 0;

         
     }
	 
	 
	 // Check that they have entered a Company//
     if (! myform.company.value){
          myform.company.value=prompt("You forgot your Company Name. Please enter it below.","");
          if (myform.company.value=="null"){
               myform.company.value="";
          }
          return 0;

         
     }
	 
	 
	 // Check that they have entered a telephone//
     if (! myform.telephone.value){
          myform.telephone.value=prompt("You forgot your telephone. Please enter it below.","");
          if (myform.telephone.value=="null"){
               myform.telephone.value="";
          }
          return 0;

         
     }
	 
	 
	
	 
	 
     // Check that they have entered an email address//
     if (! myform.email.value){
          myform.email.value=prompt("You forgot your email address. Please enter it below.","");
          if (myform.email.value=="null"){
               myform.email.value="";
          }
          return 0;

         
     }

     // Check that they have entered comments//
     if (! myform.comments.value){
          myform.comments.value=prompt("You forgot your comments. Please enter them below.","");
          if (myform.comments.value=="null"){
               myform.comments.value="";
          }
          return 0;
          
  
     }
     myform.submit();
     return 1;
 }
//-->