<!--
function Form1_Validator(theForm)
{
  if (theForm.name.value == "")
  {
    alert("Please enter a value for the \"Name\" field.");
	if (document.all) theForm.name.style.backgroundColor = 'yellow';
    theForm.name.focus();
    return (false);
  }
  if (theForm.name.value.length < 2)
  {
    alert("Please enter at least 2 characters in the \"Name\" field.");
	if (document.all) theForm.name.style.backgroundColor = 'yellow';	
    theForm.name.focus();
    return (false);
  }
  if (theForm.name.value.length > 25)
  {
    alert("Please enter at most 25 characters in the \"Name\" field.");
		if (document.all) theForm.name.style.backgroundColor = 'yellow';
    theForm.name.focus();
    return (false);
  }
tmt_formManager('nameform','submit()');
}
//-->