function openWindow(url, naam, w, h, l, t){
	mywindow = window.open (url, "mywindow", "toolbar=0, location=0,status=0,scrollbars=0, resizable=0, width="+w+",height="+h+"");
	mywindow.moveTo(l,t);
}
