

function checkform1 ( form )

{

  // ** START **

  if (form.Name.value == "") {

    alert( "Please fill in the Name field." );

    form.Name.focus();

    return false ;

  }
		
		
	 if (form.City.value == "") {

    alert( "Please fill in the City field." );

    form.City.focus();

    return false ;

  }
 
			
	 if (form.State.value == "Pick One") {

    alert( "Please pick a  State." );

    form.State.focus();

    return false ;

  }
 
 			
	 if (form.Comments.value == "") {

    alert( "Please fill in the Comments field." );

    form.Testimonial.focus();

    return false ;

  }
 


  // ** END **

  return true ;

}

