function fnjsPopSubscr(theform) {
	var bremove = false;
	var frmemail = theform.email.value
	var url01 = "nmp/forms/optInForm1.asp?email="+ frmemail
	var url02 = "nmp/forms/optOutorm.asp?email="+ frmemail

//	if (theform.removeme.checked  == true) {bremove= true;}

	if (bremove)
	  	 {window.open(url02,'Subscribe','height=300,width=350,location=1')}
	else
	 {
      window.open(url01,'Subscribe','Top=5,5,resizable=yes,toolbar=yes,location=yes,scrollbars=yes,status=no,width=350,height=350')
	 }
}

function fnjsPopUnSubscrSimple(theform) {
	var bremove = false;
	var url01 = "/nmp/forms/optOutForm.asp"
    window.open(url01,'Subscribe','scrollbars=1,location=1,status=0,height=400,width=370')
}