var popup;

function popup(fotoGroot, gb, gh) {
var scroll='no';
var status='no';
var winl = (screen.width - gb) / 2;
var wint = (screen.height - gh) / 2;
winprops = 'height='+gh+',width='+gb+',top='+wint+',left='+winl+',scrollbars='+scroll+',status='+status;
win = window.open("", "GroningenBevrijd", winprops);
win.document.open();
win.document.write('<html>');
win.document.write('<head>');
win.document.write('<title>Groningen - Bevrijd</title>');
win.document.write('</head>');
win.document.write('<body scroll="auto"  bgcolor="#FFFFFF" leftmargin=0 topmargin=0 marginheight=0 marginwidth=0 >');
win.document.write('<img src=upload/fotos/' + fotoGroot + ' vspace=0 hspace=0>');
win.document.write('</body>');
win.document.write('</html>');
win.document.close();

if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}


