// JavaScript Document
	var g_win = "";
	var g_iTop = 121;
	var g_iBottom = 0; //134;
	var g_iSepTop = 10;
	var g_iSepBottom = 20;
	function getWindowDimension() {
		var w_docWidth = 0;
		var w_docHeight = 0;
		if (typeof(window.innerWidth) == 'number') {
			//Non-IE
			w_docWidth = window.innerWidth;
			w_docHeight = window.innerHeight;
		}
		else if (document.documentElement && (document.documentElement.clientWidth || document.documentElement.clientHeight)) {
			//IE 6+ in 'standards compliant mode'
			w_docWidth = document.documentElement.clientWidth;
			w_docHeight = document.documentElement.clientHeight;
		}
		else if (document.body && (document.body.clientWidth || document.body.clientHeight)) {
			//IE 4 compatible
			w_docWidth = document.body.clientWidth;
			w_docHeight = document.body.clientHeight;
		}
		return [w_docWidth, w_docHeight];
	}
	function adjContentHeight() {
		g_win = getWindowDimension();
		document.getElementById('content').style.height = g_win[1] - g_iTop - g_iBottom - g_iSepTop - g_iSepBottom-22;
	}
	function AutoDownload() {
		window.location = "pdf/aanvraag.pdf";
	}