/* JAVASCRIPT */

/* WOORDENLIJST POP UP */

var doel;

function info(doel) {

	var width = parseInt((screen.width/2) - 250);
	var height = parseInt((screen.height/2) - 250);
	
window.open(doel, 'verklarende_woordenlijst', 'width=500, height=400, screenX='+width+', screenY='+height+', scrollbars=yes, directories=no, location=no, menubar=no, status=no, toolbar=no, resizable=no, scrollbars=yes');
	
}

/* FOTO'S POP UP */

function foto(doel) {

	var width = parseInt((screen.width/2) - 340);
	var height = parseInt((screen.height/2) - 325);
	
window.open(doel, 'verklarende_woordenlijst', 'width=680, height=550, screenX='+width+', screenY='+height+', scrollbars=yes, directories=no, location=no, menubar=no, status=no, toolbar=no, resizable=no, scrollbars=yes');
	
}

/* POPUP SLUITER */

function kill()
{
window.close();
}