var bNetscape = ( navigator.appName == 'Netscape' )

function openWin( windowURL, windowName, width, height, iScrollBars ) {
	var winleft = (screen.width - width) / 2;
	var winUp = (screen.height - height) / 2;
   width = width + 25;
   height = height + 25;
	MyWin =  window.open( windowURL, windowName, 'width=' + width + ',height=' + height + ',left=' + winleft + ',top=' + winUp + ',toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=' + iScrollBars + ',resizable=1' ) ;	
	if (parseInt(navigator.appVersion) >= 4) { MyWin.focus() }
	}
   
// Nu is de datum/tijd van dit moment
var Nu = new Date();
Nu.setTime (Nu.getTime());

// No Spam!
function NoSpam( p_strUser, p_strDomain1, p_strDomain2, p_strStyle ) {
   s = p_strUser + '@' + p_strDomain1 + '.' + p_strDomain2
   document.write( '<A STYLE=' + p_strStyle + ' HREF=' + 'mailto:' + s + '>' + s + '</A>' ) }