function popupPic(picUrl,title) 
{ 	var winl = (screen.width - w) / 2;	var wint = (screen.height - h) / 2;	winprops = 'height=200,width=200,top='+wint+',left='+winl+'resizable=0'	window.open("./popupc.html?"+picUrl+"&"+title+"", "", winprops);} 


function popupPage(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=1,width=600,height=450,left=50,top=50');");
}


function NewWindow(mypage, myname, w, h, scroll) 
{	var winl = (screen.width - w) / 2;	var wint = ((screen.height - 50)- h) / 2;	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',noresize'	win = window.open(mypage, myname, winprops)	if (parseInt(navigator.appVersion) >= 4) 
	{ 
		win.window.focus(); 
	}}

// Voorbeeld NewWindow : 
// <a href="/footer/disclaimer.html" class="footer" onclick="NewWindow(this.href,'Disclaimer',500,350,1);return false;">Disclaimer</a>
