function toonhoofdstuk(nummer) {
	if (nummer == ""){
		document.getElementById('hoofdstuk0').style.display = "block";
		document.getElementById('hoofdstuk1').style.display = "block";
		document.getElementById('hoofdstuk2').style.display = "block";
		document.getElementById('hoofdstuk3').style.display = "block";
		document.getElementById('hoofdstuk4').style.display = "block";
		document.getElementById('hoofdstuk5').style.display = "block";
	}else{
		document.getElementById('hoofdstuk0').style.display = "none";
		document.getElementById('hoofdstuk1').style.display = "none";
		document.getElementById('hoofdstuk2').style.display = "none";
		document.getElementById('hoofdstuk3').style.display = "none";
		document.getElementById('hoofdstuk4').style.display = "none";
		document.getElementById('hoofdstuk5').style.display = "none";
		document.getElementById('hoofdstuk' + nummer).style.display = "block";
	}
}

function flashpaper(bestand) {
	var w = 800;
	var h = 600;
	var l = (screen.width - w) / 2;
    var t = (screen.height - h) / 2;
	
	html = '<html><head><title>Making of...' + bestand + '</title></head><body style="margin:0;padding:0" scroll="no"><embed src="' + bestand + '" width="100%" height="100%" menu="false"></body></html>'
	
	paperWindow = window.open('','zoomify','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=' + w + ',height=' + h + ',copyhistory=0,left=' + l + ',top=' + t + ',screenX=' + l + ',screenY=' + t);
	paperWindow.document.write(html);
	paperWindow.document.close();
	if (paperWindow != null) paperWindow.focus();
}

function zoomify(img){
	var w = 600;
	var h = 500;
	var l = (screen.width - w) / 2;
    var t = (screen.height - h) / 2;
	
	html = '<html><head><title>Zoom in op ' + img + '</title></head><body style="margin:0;padding:0" scroll="no"><embed src="/zoom/viewer.swf?zoomifyImagePath=' + escape('/zoom/' + img) + '&zoomifyZoom=-1&type=.swf" width="100%" height="100%" menu="false"></body></html>'
	
	zoomWindow = window.open('','zoomify','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=' + w + ',height=' + h + ',copyhistory=0,left=' + l + ',top=' + t + ',screenX=' + l + ',screenY=' + t);
	zoomWindow.document.write(html);
	zoomWindow.document.close();	
	if (zoomWindow != null) zoomWindow.focus();
}

function cover() {
	var w = 418;
	var h = 600;
	var l = (screen.width - w) / 2;
    var t = (screen.height - h) / 2;
	coverWindow = window.open('afb/cover.htm','cover','toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=0,width=' + w + ',height=' + h + ',copyhistory=0,left=' + l + ',top=' + t + ',screenX=' + l + ',screenY=' + t);
	if (coverWindow != null) coverWindow.focus();
}

function groot(img) {
	var w = 600;
	var h = 600;
	var l = (screen.width - w) / 2;
    var t = (screen.height - h) / 2;
	afbWindow = window.open('groot.aspx?img=' + escape('afb/' + img),'afb','toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=0,resizable=0,width=' + w + ',height=' + h + ',copyhistory=0,left=' + l + ',top=' + t + ',screenX=' + l + ',screenY=' + t);
	if (afbWindow != null) afbWindow.focus();
}

