// NIEUWSBRIEF JAVASCRIPT
// Popup-scherm voor tonen Subscribe
// (c) Mailinglijst.nl, 2002
// june 2009: modified for use in MailingLijst 3.0

function subscribe(lijstnr){
var stroptions, strURL
var lngtop, lngleft

	strURL = "http://www.mailinglijst.eu/nieuwsbrief/subscribe/?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();
}
