/***************** Statusbalk is leeg bij alle links*************/
function hidestatus(){
	window.status=''
	return true
}

if (!document.layers){
	document.onmouseover=hidestatus
	document.onmouseout=hidestatus
}
/****************************************************************/

function openChromeLessDemo(afb) {
	var win = window.open("popup.php?afb="+afb, "", "fullscreen=1");
	var sw = window.screen.availWidth;
	var sh = window.screen.availHeight;
	var w = 350;
	var h = 300;
	win.resizeTo(w, h);
	win.moveTo((sw - w) / 2, (sh - h) / 2);
}
