function Popup(pagina, naam, hoogte, breedte, scroll, tool, menu, left, top) {
		window.open(pagina, naam, 'height='+hoogte+',width='+breedte+',scrollbars='+scroll+',toolbar='+tool+',location=no,status=no,menubar='+menu+',left='+left+',top='+top+',directories=no')
		}

function window_onload() {

if (window.print != null) 
{ window.print(); } 
else 
{ alert('The webbrowser you use doesn´t support automatic printing. In order to print this page you need to choose print from the File menu in the menu bar.'); 
	}

}


function resizeContainer(id, w, h) {
	var obj = document.getElementById(id);
	if (obj) {
		obj.style.width = w + 'px';
		obj.style.height = h + 'px';
	}
}