function modifyaccount_Validator(theForm)
{
  if (theForm.prior_password.value == "") {
	  if (theForm.password.value == "")
	  {
		alert("Please enter a Password.");
		theForm.password.focus();
		return (false);
	  }
	
	  if (theForm.password_confirm.value == "")
	  {
		alert("Please re-enter your Password.");
		theForm.password_confirm.focus();
		return (false);
	  }
	
	  if (theForm.password.value != theForm.password_confirm.value)
	  {
		alert("Password entries do not match. Please try again.");
		theForm.password.focus();
		return (false);
	  }
  }
 
 if (theForm.email.value == "")
  {
    alert("Please enter your Email Address.");
    theForm.email.focus();
    return (false);
  }

  if ((theForm.email.value.indexOf('@',0) == -1) || (theForm.email.value.indexOf('.',0) == -1))
  {
    alert("Email Address is incorrectly formatted. Please enter again.");
    theForm.email.focus();
    return (false);
  }

  return (true);
}

function OptOut() {
  if (document.modifyaccount.email_ind.checked==true)
  {
    document.modifyaccount.generationo.checked=false;
    document.modifyaccount.outattheopera.checked=false;
    document.modifyaccount.checked=false;
	document.modifyaccount.operaminders.checked=false;
	document.modifyaccount.promooffers.checked=false;
	document.modifyaccount.groupsales.checked=false;
	document.modifyaccount.youngartists.checked=false;
  }
}

function OptIn() {
  if ((document.modifyaccount.generationo.checked==true) || (document.modifyaccount.outattheopera.checked==true) || (document.modifyaccount.groupsales.checked==true) || (document.modifyaccount.operaminders.checked==true) || (document.modifyaccount.promooffers.checked==true) || (document.modifyaccount.youngartists.checked==true))
  {
    document.modifyaccount.email_ind.checked=false;
  }
}
