// NIEUWSBRIEF JAVASCRIPTS
// Popup-scherm voor tonen Subscribe/unsubscribe informatie.
// (c) Mailinglijst.nl, 2002

function subscribe(lijstnr){
var stroptions, strURL
var lngtop, lngleft

	//strURL = "http://www.mailinglijst.nl/nieuwsbrief/subscribe.asp?l=" + lijstnr
	strURL = "http://ymlp.com/xgebmhyugmgj"
	lngtop = 50
	lngleft = 50
	stroptions= "width=550,height=700,top="+lngtop + ",left=" +lngleft + ",scrollbars=1"
	whandle = window.open(strURL,'nieuwsbrief',stroptions);
	whandle.focus();
}

function unsubscribe(lijstnr){
var stroptions, strURL
var lngtop, lngleft

	//strURL = "http://www.mailinglijst.nl/nieuwsbrief/edit.asp?l=" + lijstnr
	strURL = "http://ymlp.com/xgebmhyugmgj"
	lngtop = 50
	lngleft = 50
	stroptions= "width=550,height=700,top="+lngtop + ",left=" +lngleft + ",scrollbars=1"
	whandle = window.open(strURL,'nieuwsbrief',stroptions);
	whandle.focus();
}


