function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
function ENewsletterPro_JoinForm_Validator(theForm)
{
  if (theForm.Email.value == "")
  {
    alert("Please enter a value for the \"Email Address\" field. Close this window and re-enter your email address.");
    theForm.Email.focus();
    return (false);
  }
  if (theForm.Email.value.length < 7)
  {
    alert("Please enter at least 7 characters in the \"Email Address\" field. Close this window and re-enter your email address.");
    theForm.Email.focus();
    return (false);
  }
  if (theForm.Email.value.length > 255)
  {
    alert("Please enter at most 255 characters in the \"Email Address\" field. Close this window and re-enter your email address.");
    theForm.Email.focus();
    return (false);
  }
  return (true);
}
