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="incl/PhotoPopup.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 + 59);
window.focus();
}
