var nw=null;
function viewPic(img,txtcaption){if (nw && !nw.closed) nw.close();picfile=new Image();picfile.src=(img);fileCheck(img,txtcaption);}
function fileCheck(img,txtcaption){if((picfile.width!=0)&&(picfile.height!=0)){makeWindow(img,txtcaption);}else{funzione="fileCheck('"+img+"')";intervallo=setTimeout(funzione,8);}}
function makeWindow(img,txtcaption){wd = picfile.width + 45;ht=picfile.height+70;var args="height=" + ht + ",innerHeight=" + ht;
args += ",width=" + wd + ",innerWidth=" + wd;
if (window.screen){ 
var avht = screen.availHeight - 35;var avwd=screen.availWidth-20;
var scrl = "no";
if (avht<ht) {ht=avht;scrl="yes";}
if (avwd<wd) {wd=avwd;scrl="yes";}
var xcen = (avwd - wd) / 2;var ycen = (avht - ht) / 2;args += ",left=" + xcen + ",screenX=" + xcen;
args += ",width="+wd+",height="+ht;
args += ",top=" + ycen + ",screenY=" + ycen + ",resizable=yes,scrollbars="+scrl;}nw = window.open("", 'picture', args);
nw.document.writeln('<html><head><title>www.8vanoostbrabant.tk [');
nw.document.writeln(txtcaption,']</title></head><body bgcolor="white" text="blue"><font size="-3"><center>');
nw.document.writeln('<img src="', img,'" ALT="',txtcaption,'"><br>');
nw.document.writeln(txtcaption); nw.document.writeln('<br><a href="" onClick="top.close()">Sluiten</a></center></font></body></html>'); return nw;
} 
