function OpenWin(foto,alt) {
	var win = window.open('', 'foto', 'width=836, height=500, scrollbars=yes, resize=yes');
	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></head><body leftmargin="0" topmargin="5" bottommargin="0" marginheight="5" marginwidth="0"><table cellpadding="0" cellspacing="0" border=0 width="100%" height="100%"><tr valign=middle><td><center><img width=816 hight=1172 src="' + foto + '" name="afbeelding"></center></td></tr></table></body></html>');
	win.document.close();
}
