function openPopup(imgpar){
 var eSrc = imgpar.children(0);
 //if (eSrc.tagName.toUpperCase() == "A"){
 //	eSrc = event.srcElement.children(0);
 //}

 if (eSrc.tagName.toUpperCase() == "IMG"){
    foto = new Object();
    foto.src = eSrc.src;
    fotoUrl = eSrc.src;
    fotoTitle = eSrc.alt;
    if (fotoTitle.length == 0){
	 fotoTitle = "Foto...";
    }
	
//"width='300',height='200',status='no',location='no'"
    PreView = window.open("leeg.htm","foto","width=600,height=700,status='no',location='no'");
    PreView.document.open();
    PreView.document.write("<html><head>");
    PreView.document.write("<title>" + fotoTitle +"</title>");
    PreView.document.write("<style>body{background-image\:url\('zandloper.gif'\)\;z-order:1000\;background-repeat\:no-repeat\;background-position\:center\;\}</style>");
    PreView.document.write("<script language='javascript'>");
    PreView.document.write("function resizeWin(){");
    PreView.document.write("var imgPic = document.images.item\(0\)\;");
    PreView.document.write("var picWidth = imgPic.width+50\;");	
    PreView.document.write("var picHeight = imgPic.height+290\;");
    PreView.document.write("window.resizeTo\(picWidth,picHeight\)\;}");
    PreView.document.write("<\/script>");
    PreView.document.write("</head><body onload='resizeWin\(\)\;document.body.style.background=\"\"\;'><center>");
    PreView.document.write("<hr>");
    PreView.document.write("<img hspace='0' vspace='0' src='" + fotoUrl + "'>");
    PreView.document.write("<hr><form><input type='button' value='print foto' onClick='window.print();' /><INPUT TYPE='button' VALUE='Sluiten' onClick='window.close();' /></form>");
    PreView.document.write("</center>");
    PreView.document.write("</body></html>");
    PreView.document.close();
    PreView.focus();
 }
}


function openWin(fotoUrl){
	//window.open();
    
    var PreView = window.open("","foto","width=500,height=500,status='no',location='no'");
    PreView.document.open();
    PreView.document.write("<html><head>");
    PreView.document.write("<title>" + "foto" +"<\/title>");
    PreView.document.write("<script language='javascript'>");
    PreView.document.write("function resizeWin(){");
    PreView.document.write("var imgPic = document.images.item\(0\)\;");
    PreView.document.write("var picWidth = imgPic.width+50\;");	
    PreView.document.write("var picHeight = imgPic.height+160\;");
    PreView.document.write("if (picHeight > window.screen.availHeight){");
    PreView.document.write("picHeight = window.screen.availHeight\;}");
    PreView.document.write("window.resizeTo\(picWidth,picHeight\)\;}");
    PreView.document.write("<\/script>");
    PreView.document.write("<\/head><body onload='resizeWin()\;'><center>");
    PreView.document.write("<hr>");
    PreView.document.write("<img hspace='0' vspace='0' src='" + fotoUrl + "'>");
    PreView.document.write("<hr><form><input type='button' value='print foto' onClick='window.print();' /><INPUT TYPE='button' VALUE='Sluiten' onClick='window.close();' \/><\/form>");
    PreView.document.write("<\/center>");
    PreView.document.write("<\/body></html>");
    PreView.document.close();
    PreView.focus();
}
