// 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
	lngtop = 50
	lngleft = 50
	stroptions= "width=400,height=500,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
	lngtop = 50
	lngleft = 50
	stroptions= "width=400,height=400,top="+lngtop + ",left=" +lngleft + ",scrollbars=1"
	whandle = window.open(strURL,'nieuwsbrief',stroptions);
	whandle.focus();
}