function toonFoto(foto,dir) {
	var win = window.open('', 'Foto', 'width=400,height=400');
	win.focus();
	win.document.open('text/html', 'replace');
	win.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html><head><title>Crash Fun</title><script language="javascript" type="text/javascript" src="javascript/fp_popup.js"></script><link rel="stylesheet" href="style.css" type="text/css"></head><body onLoad="javascript:schaalPopup();" class="popup"><center><img src="fotos/' + dir + '/' + foto + '.jpg" name="afbeelding" class="pic"><br><p><a href=tussenpagina.htm target=_blank>Klik hier voor meer fun pics!</a></p></center></body></html>');
	win.document.close();
}

function schaalPopup() {
	var ie4 = (document.all);
	var bodyWidth = 0;
	var bodyHeight = 0;
	
	if (ie4) {
		bodyWidth = document.body.offsetWidth;
		bodyHeight = document.body.offsetHeight;
	}
	else {
		bodyWidth = innerWidth;
		bodyHeight = innerHeight;
	}

	window.resizeTo(document.afbeelding.width + 30, document.afbeelding.height + 62);
	
	window.focus();

}
