function subscribeNL() {
var re = / /g
var sEmail = document.frmNL.txtEmail.value
var bPrivacy = document.frmNL.chkPrivacy.checked
	sEmail = sEmail.replace(re, "")
	if (sEmail=="") {
		alert("Attenzione\nNon hai inserito il tuo indirizzo e-mail");
		document.frmNL.txtEmail.focus();
		return;
	}
	if (!bPrivacy) {
		alert("Attenzione\nPer iscriverti alla Newsletter devi obbligatoriamente\nmanifestare il consenso al trattamento dei dati personali.");
		try {document.frmNL.chkPrivacy.focus();} catch(ex){}
		return;
	}
	document.frmNL.hOper.value = 2;	//OP_NL_SUBSCRIBE
	document.frmNL.submit();
}
function unlockNL() {
var re = / /g
var sUnlockCode = document.frmNL.txtUnlockCode.value
	sUnlockCode = sUnlockCode.replace(re, "")
	if ( sUnlockCode == "" ) {
		alert("Attenzione\nNon hai inserito il codice di sblocco");
		document.frmNL.txtUnlockCode.focus();
		return;
	}
	document.frmNL.txtUnlockCode.value = sUnlockCode
	document.frmNL.hOper.value = 5;	//OP_NL_UNLOCK
	document.frmNL.submit();
}