
function View_Foto(Wid,Hei,ImageName,Tit) {
newWindow=window.open("","","toolbar=no,location=no,directories=no,status=no,menubar=no,fullscreen=no,scrollbars=yes,resizable=no,width="+Wid+",height="+Hei+"");
       var newContent = "<html><head>\n"
       newContent += "<title>" + Tit + "</title></head>\n"
       newContent += "<body bgcolor=\"#ffffff\" marginheight=\"0\" marginwidth=\"0\" topmargin=\"0\" leftmargin=\"0\">\n"
       newContent += "<img border=0 src=\"" + ImageName + "\"" + " width=\"" + Wid + "\" height=\"" + Hei + "\"></a>\n"
	newContent+="<div style=\"position:absolute;left:0px;top:0px;\"><img src=\"/images/1x1.gif\" width="+Wid+" height="+Hei+"></div>"
//	newContent+="<div style=\"position:absolute;left:0px;top:0px;\"><table width="+Wid+" height="+Hei+"><tr><td width="+Wid+" height="+Hei+"><img src=\"/images/verend.gif\" width="+Wid+"></td></tr></table></div>"
       newWindow.document.writeln(newContent)
       newWindow.document.writeln("</body></html>")
       newWindow.document.close()
  }

function img_over(imgName,src) {
document.images[imgName].src=src;
return true;
}

