// link in zelfde vensterfunction navIn(theUrl){	window.location.href=theUrl;	}	// link in nieuw vensterfunction navOut(theUrl){	window.open(theUrl);	}
	
// pop up

function popup(URL) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=530,height=500,left=100,top=100');");
	}		
	
// pop up bladeraar

function MM_openBrWindow(theURL,winName,width,height)
    { //v2.0
        height = height ;
        var winl = (screen.width - width) / 2;
        var wint = (screen.height - height) / 2;
        var i = width ;
        var j = height ;
        var features = 'scrollbars=no,resizable=no,width='+width+',height='+height+',top='+wint+',left='+winl+'';
        var popupscherm;
        popupscherm=window.open(theURL,winName,features);
        popupscherm.resizeTo(i,j);
        popupscherm.focus();
    }
