// JavaScript Document

	//nieuw venster openen
	function NewWin(page,width,height){
		windowLeft = (screen.availWidth - width) / 2;
		windowTop = (screen.availHeight - height) / 2;
		window.open(page, "PopupWindow", "width="+ width +", height="+ height +",screenX="+ windowLeft +",screenY="+ windowTop +",top="+ windowTop +",left="+ windowLeft +",toolbar=no,menubar=no,location=no,statusbar=no,scrollbars=no,resizable=no");
	}

	function getHeight(){
		//get clientheight with 20 px adjustment for browserrendering 
		return (document.body.clientHeight - 20);
	}

	function getWidth(){
		//get clientwidth with 20 px adjustment for browserrendering 
		return (document.body.clientWidth - 20);
	}

	function resetWin(){
		document.getElementById('Scroll').style.height = (getHeight()-190);
		document.getElementById('Scroll').style.width = (getWidth()-180);
	}





