function fOpenWin(url,name,w,h)
{
	window.open([url],[name],"scrollbars=1,menubar=0,toolbar=0,status=0,resizable=1,width="+w+",height="+h);
}
function openWin(foto,alt) {
	var win = window.open('', 'foto', 'width=1,height=1');
	win.focus();
	win.document.open('text/html', 'replace');
	win.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html><head><title>'+ alt + '</title><script language="javascript" type="text/javascript" src="../js/popup.js"></script></head><body leftmargin=0 topmargin=0 bottommargin=0 marginheight=0 marginwidth=0 onLoad="javascript:schaalPopup();"><table cellpadding=0 cellSpacing=0 border=0 width=100% height="100%"><tr valign=middle><td><center><img src="' + foto + '" name="afbeelding"></center></td></tr></table></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 + 10, document.afbeelding.height + 35);
window.focus();
}
