// ===================================================================
// Author: Kolibrie Creatieve Media (c) 2006
// http://www.kolibrie.net/
// ===================================================================

function objRef(id) {return document.getElementById(id)}
function styleRef(id) {return this.objRef(id).style}

function checkEnter(event) {
	code=(document.layers)?event.which:code=event.keyCode
	if (code==13) document.frmZoekmachine.submit();
}	

function hl(id){
	b=id.src;
	s=(b.substring(b.length-4,b.length-5)==0)?'1':'0';
	id.src=(b.substring(b.length-5,0)+s+b.substring(b.length,b.length-4));
}

// 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();
}
// EINDE NIEUWSBRIEF JAVASCRIPTS

