function popup(delink,w,h,sb,clean) {
	day = new Date();
	id = day.getTime();
	if (w==null) w = 800
	if (h==null) h = 500
	LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',resizable,scrollbars=true,location=yes,menubar=yes,status=yes,toolbar=yes'
	cleansettings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',resizable,scrollbars='+sb+',menubar=no,status=no,toolbar=no,directories=no'
	if (clean == null) id = window.open(delink,id,settings)
	else id = window.open(delink,id,cleansettings)
	if(id.window.Uitgelicht){id.window.Uitgelicht();}
}




