
<!--
function JumpToIt(list) {
    var newPage = list.options[list.selectedIndex].value
    if (newPage != "None") {
        location.href=newPage
    }
}

function menu_select(value) {
	document.cookie = "MWA_menu_type=" + value
	window.location = 'http://www.mwauk.com/mwa.asp?menu_type=' + value
}

function FrontPage_Form1_Validator(theForm)
{

  if (theForm.Contact_FirstName.value.length < 1)
  {
    alert("Please enter at least 1 characters in the \"Contact_FirstName\" field.");
    theForm.Contact_FirstName.focus();
    return (false);
  }

  var checkOK = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzƒŠŒŽšœžŸÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ \t\r\n\f";
  var checkStr = theForm.Contact_FirstName.value;
  var allValid = true;
  for (i = 0;  i < checkStr.length;  i++)
  {
    ch = checkStr.charAt(i);
    for (j = 0;  j < checkOK.length;  j++)
      if (ch == checkOK.charAt(j))
        break;
    if (j == checkOK.length)
    {
      allValid = false;
      break;
    }
  }
  if (!allValid)
  {
    alert("Please enter only letter and whitespace characters in the \"Contact_FirstName\" field.");
    theForm.Contact_FirstName.focus();
    return (false);
  }

  if (theForm.Contact_LastName.value == "")
  {
    alert("Please enter a value for the \"Contact_LastName\" field.");
    theForm.Contact_LastName.focus();
    return (false);
  }

  if (theForm.Contact_LastName.value.length < 1)
  {
    alert("Please enter at least 1 characters in the \"Contact_LastName\" field.");
    theForm.Contact_LastName.focus();
    return (false);
  }

  var checkOK = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzƒŠŒŽšœžŸÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ \t\r\n\f";
  var checkStr = theForm.Contact_LastName.value;
  var allValid = true;
  for (i = 0;  i < checkStr.length;  i++)
  {
    ch = checkStr.charAt(i);
    for (j = 0;  j < checkOK.length;  j++)
      if (ch == checkOK.charAt(j))
        break;
    if (j == checkOK.length)
    {
      allValid = false;
      break;
    }
  }
  if (!allValid)
  {
    alert("Please enter only letter and whitespace characters in the \"Contact_LastName\" field.");
    theForm.Contact_LastName.focus();
    return (false);
  }

  if (theForm.Contact_Title.value == "")
  {
    alert("Please enter a value for the \"Contact_Title\" field.");
    theForm.Contact_Title.focus();
    return (false);
  }

  if (theForm.Contact_Title.value.length < 1)
  {
    alert("Please enter at least 1 characters in the \"Contact_Title\" field.");
    theForm.Contact_Title.focus();
    return (false);
  }

  var checkOK = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzƒŠŒŽšœžŸÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ \t\r\n\f";
  var checkStr = theForm.Contact_Title.value;
  var allValid = true;
  for (i = 0;  i < checkStr.length;  i++)
  {
    ch = checkStr.charAt(i);
    for (j = 0;  j < checkOK.length;  j++)
      if (ch == checkOK.charAt(j))
        break;
    if (j == checkOK.length)
    {
      allValid = false;
      break;
    }
  }
  if (!allValid)
  {
    alert("Please enter only letter and whitespace characters in the \"Contact_Title\" field.");
    theForm.Contact_Title.focus();
    return (false);
  }

  if (theForm.Contact_WorkPhone.value == "")
  {
    alert("Please enter a value for the \"Contact_WorkPhone\" field.");
    theForm.Contact_WorkPhone.focus();
    return (false);
  }

  if (theForm.Contact_WorkPhone.value.length < 1)
  {
    alert("Please enter at least 1 characters in the \"Contact_WorkPhone\" field.");
    theForm.Contact_WorkPhone.focus();
    return (false);
  }

  if (theForm.Contact_WorkPhone.value.length > 25)
  {
    alert("Please enter at most 25 characters in the \"Contact_WorkPhone\" field.");
    theForm.Contact_WorkPhone.focus();
    return (false);
  }

  var checkOK = "0123456789- \t\r\n\f";
  var checkStr = theForm.Contact_WorkPhone.value;
  var allValid = true;
  for (i = 0;  i < checkStr.length;  i++)
  {
    ch = checkStr.charAt(i);
    for (j = 0;  j < checkOK.length;  j++)
      if (ch == checkOK.charAt(j))
        break;
    if (j == checkOK.length)
    {
      allValid = false;
      break;
    }
  }
  if (!allValid)
  {
    alert("Please enter only digit and whitespace characters in the \"Contact_WorkPhone\" field.");
    theForm.Contact_WorkPhone.focus();
    return (false);
  }

  if (theForm.Contact_FAX.value == "")
  {
    alert("Please enter a value for the \"Contact_FAX\" field.");
    theForm.Contact_FAX.focus();
    return (false);
  }

  if (theForm.Contact_FAX.value.length < 1)
  {
    alert("Please enter at least 1 characters in the \"Contact_FAX\" field.");
    theForm.Contact_FAX.focus();
    return (false);
  }

  if (theForm.Contact_FAX.value.length > 25)
  {
    alert("Please enter at most 25 characters in the \"Contact_FAX\" field.");
    theForm.Contact_FAX.focus();
    return (false);
  }

  var checkOK = "0123456789- \t\r\n\f";
  var checkStr = theForm.Contact_FAX.value;
  var allValid = true;
  for (i = 0;  i < checkStr.length;  i++)
  {
    ch = checkStr.charAt(i);
    for (j = 0;  j < checkOK.length;  j++)
      if (ch == checkOK.charAt(j))
        break;
    if (j == checkOK.length)
    {
      allValid = false;
      break;
    }
  }
  if (!allValid)
  {
    alert("Please enter only digit and whitespace characters in the \"Contact_FAX\" field.");
    theForm.Contact_FAX.focus();
    return (false);
  }

  if (theForm.Contact_Email.value == "")
  {
    alert("Please enter a value for the \"Contact_Email\" field.");
    theForm.Contact_Email.focus();
    return (false);
  }

  if (theForm.Contact_Email.value.length < 1)
  {
    alert("Please enter at least 1 characters in the \"Contact_Email\" field.");
    theForm.Contact_Email.focus();
    return (false);
  }
  return (true);
}
	
//-->

