<!--
function checkform ( form )
{
  // see http://www.thesitewizard.com/archive/validation.shtml
  // for an explanation of this script and how to use it on your
  // own website

  // ** START **
  if (form.Phone.value == "enter cell # (1+area code)") {
    alert( "Please enter your cell number. (1+area code)" );
    form.Phone.focus();
    return false ;
  }
  // ** END **
  return true ;
}
//-->
