<!--
d=document;

function printpage() {
	if (window.print) {
		window.print();
	} else {
		alert("Uw browser ondersteunt deze functionaliteit niet.\nProbeer de toetsen-combinatie: CTRL+p\n");
	}
}

function openwindow(page,width,height) {
	if (!width) {
		width = 400;
	}
	if (!height) {
		height = 240;
	}
	window.open(page,"","toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=0,left=100,top=100,width=" +width+ ",height=" +height);
}

//-->

