<!-- Hide from old browsers
function subForm_Validator(Form)
{
 
  if (Form.username.value.length > 50)
  {
    alert("Please enter at most 50 characters in the \"Contact Name\" field.");
    Form.username.focus();
    return (false);
  }

  
  if (Form.company.value.length > 50)
  {
    alert("Please enter at most 50 characters in the \"Company\" field.");
    Form.company.focus();
    return (false);
  }
 
}
// -->