//Zorgt voor pop-ups in het midden van uw scherm
function popup(mypage, myname, w, h, scroll)
{
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	window.open(mypage,'','toolbar=0,location=0, directories=0, status=0, menubar=0, scrollbars='+scroll+',resizable=0, height='+h+', width='+w+',top='+wint+', left='+winl);
}

function linkInNieuwVenster(url)
{
	window.open(url,'_blank', 'fullscreen=no,toolbar=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,directories=yes,location=yes');
}