
<!-- Hide this code from non-JavaScript browsers
var Roll=new Array();


Roll["a"] = new RollOver("images/leftnav_on_01.gif");
Roll["b"] = new RollOver("images/leftnav_on_02.gif");
Roll["c"] = new RollOver("images/leftnav_on_03.gif");
Roll["d"] = new RollOver("images/leftnav_on_04.gif");
Roll["e"] = new RollOver("images/leftnav_on_05.gif");
Roll["f"] = new RollOver("images/leftnav_on_06.gif");
Roll["g"] = new RollOver("images/leftnav_on_07.gif");
Roll["h"] = new RollOver("images/leftnav_on_08.gif");
Roll["i"] = new RollOver("images/leftnav_on_09.gif");



function RollOver(on_url)
{       this.on        = new Image();
        this.on.src    = on_url;
}

function flip ()
{       if(arguments.length==1) arguments[1]=arguments[0];
        for(i=0 ; i<arguments.length ; i+=2){
                temp = document.images[arguments[i]].src;
                document.images[arguments[i]].src  = Roll[arguments[i+1]].on.src;
                Roll[arguments[i+1]].on.src = temp;
        }
}


function FrontPage_Form1_Validator(theForm)
{

  if (theForm.Contact_Info_FirstName.value == "")
  {
    alert("Please enter a value for the First Name field.");
    theForm.Contact_Info_FirstName.focus();
    return (false);
  }

  if (theForm.Contact_Info_LastName.value == "")
  {
    alert("Please enter a value for the Last Name field.");
    theForm.Contact_Info_LastName.focus();
    return (false);
  }

  if (theForm.Contact_Info_WorkPhone.value == "")
  {
    alert("Please enter a value for the Work Phone field.");
    theForm.Contact_Info_WorkPhone.focus();
    return (false);
  }

  if (theForm.Contact_Info_WorkPhone.value.length > 25)
  {
    alert("Please enter at most 25 characters in the Work Phone field.");
    theForm.Contact_Info_WorkPhone.focus();
    return (false);
  }

  if (theForm.Contact_Info_HomePhone.value == "")
  {
    alert("Please enter a value for the Home Phone field.");
    theForm.Contact_Info_HomePhone.focus();
    return (false);
  }

  if (theForm.Contact_Info_HomePhone.value.length > 25)
  {
    alert("Please enter at most 25 characters in the Home Phone field.");
    theForm.Contact_Info_HomePhone.focus();
    return (false);
  }
   if (theForm.Contact_Info_Email.value.length > 25)
  {
    alert("Please enter an E-mail Address.");
    theForm.Contact_Info_Email.focus();
    return (false);
  }
  return (true);
}


function FrontPage_Form2_Validator(theForm)
{

  if (theForm.Contact_FirstName.value == "")
  {
    alert("Please enter a value for the First Name field.");
    theForm.Contact_FirstName.focus();
    return (false);
  }

  if (theForm.Contact_LastName.value == "")
  {
    alert("Please enter a value for the Last Name field.");
    theForm.Contact_LastName.focus();
    return (false);
  }

  if (theForm.Contact_WorkPhone.value == "")
  {
    alert("Please enter a value for the Contact Work Phone  field.");
    theForm.Contact_WorkPhone.focus();
    return (false);
  }

  if (theForm.Contact_WorkPhone.value.length > 25)
  {
    alert("Please enter at most 25 characters in the Contact Work Phone field.");
    theForm.Contact_WorkPhone.focus();
    return (false);
  }

  if (theForm.Contact_HomePhone.value == "")
  {
    alert("Please enter a value for the  Contact Home Phone  field.");
    theForm.Contact_HomePhone.focus();
    return (false);
  }

  if (theForm.Contact_HomePhone.value.length > 25)
  {
    alert("Please enter at most 25 characters in the  Contact Home Phone field.");
    theForm.Contact_HomePhone.focus();
    return (false);
  }
  
  if (theForm.Contact_Email.value.length > 25)
  {
    alert("Please enter an E-mail Address.");
    theForm.Contact_Email.focus();
    return (false);
  }
  return (true);
}
// End hiding -->









































