<!--
		function Form_Validator(theForm)
		{
		
		  if (theForm.Name.value == "")
		  {
		    alert("Please enter a value for the \"Name\" field.");
		    theForm.Name.focus();
		    return (false);
		  }
		
		  var checkOK = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzƒŠŒŽšœžŸÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ-'. \t\r\n\f";
		  var checkStr = theForm.Name.value;
		  var allValid = true;
		  var validGroups = 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, whitespace and \"-'.\" characters in the \"Name\" field.");
		    theForm.Name.focus();
		    return (false);
		  }
		
		  if (theForm.Email.value == "")
		  {
		    alert("Please enter a value for the \"Email\" field.");
		    theForm.Email.focus();
		    return (false);
		  }
		
		  if (theForm.Email.value.length < 7)
		  {
		    alert("Please enter at least 7 characters in the \"Email\" field.");
		    theForm.Email.focus();
		    return (false);
		  }
		
		  var checkOK = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyzƒŠŒŽšœžŸÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ0123456789-@.-_";
		  var checkStr = theForm.Email.value;
		  var allValid = true;
		  var validGroups = 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, digit and \"@.-_\" characters in the \"Email\" field.");
		    theForm.Email.focus();
		    return (false);
		  }
		  return (true);
		}
	//-->