function newWindow(url) {
	var width = (screen.availWidth) - 100;
	var height = (screen.availHeight) - 200;
	var left = (screen.availWidth - width) / 2;

	properties = 'top=0, left='+left+', width='+width+', height='+height+', resizable=1, scrollbars=1, menubar=1, toolbar=1, location=1, directories=1'
	
	openWindow = window.open(url, 'Website', properties);
}
function newImage(url, width, height) {
	var top = (screen.availHeight - height) / 2;
	var left = (screen.availWidth - width) / 2;

	properties = 'top='+top+', left='+left+', width='+width+', height='+height+', resizable=1, scrollbars=0, menubar=0, toolbar=0, location=0, directories=0'

	openImage = window.open(url, 'Afbeelding', properties);

	with (openImage.document) {
		writeln ('<html><head><title>Karateschool Bezemer</title><style>* { margin: 0; }</style></head><body><img src='+url+'></body></html>');
		close();
	}
}

/* Nieuw venster */

function new_window(url) {
	var width = (screen.availWidth) - 100;
	var height = (screen.availHeight) - 200;
	var left = (screen.availWidth - width) / 2;

	properties = 'top=0, left='+left+', width='+width+', height='+height+', resizable=1, scrollbars=1, menubar=1, toolbar=1, location=1, directories=1'

	openWindow = window.open(url, 'Website', properties);
}