if (window.top.location == document.location) {
		window.top.location = 'index.php';
}


function printpopup (url) {

	// Calculate middle
	screenY = document.body.offsetHeight;
	screenX = window.screen.availWidth;
	x = (screenX - 700) / 2;
	y = (screenY - 400) / 2;

	window.open (url, 'printpage', "top=" + y + ", left=" + x + ", width=700, height=400, status=no, toolbar=no, menubar=no, location=no, resizable=no, scrollbars=no"); 

}

function sitemappopup () {

	// Calculate middle
	screenY = document.body.offsetHeight;
	screenX = window.screen.availWidth;
	x = (screenX - 600) / 2;
	y = (screenY - 400) / 2;

	window.open ('sitemap.html', 'sitemap', "top=" + y + ", left=" + x + ", width=600, height=400, status=no, toolbar=no, menubar=no, location=no, resizable=no, scrollbars=no"); 


}

function disclaimerpopup () {

	// Calculate middle
	screenY = document.body.offsetHeight;
	screenX = window.screen.availWidth;
	x = (screenX - 600) / 2;
	y = (screenY - 400) / 2;

	window.open ('disclaimer.html', 'sitemap', "top=" + y + ", left=" + x + ", width=600, height=400, status=no, toolbar=no, menubar=no, location=no, resizable=no, scrollbars=no"); 


}

function mdwpopup (naam) {

	// Calculate middle
	screenY = document.body.offsetHeight;
	screenX = window.screen.availWidth;
	x = (screenX - 600) / 2;
	y = (screenY - 400) / 2;

	window.open ('medewerker_' + naam + '.html', 'sitemap', "top=" + y + ", left=" + x + ", width=600, height=400, status=no, toolbar=no, menubar=no, location=no, resizable=no, scrollbars=no"); 


}