function ViewImage(ifile,ix,iy,ititle) { 
var win;
win = window.open("","imageviewer","width="+ix+",height="+iy+",screenX=30,screenY=30,menubar=no,toolbar=no");
win.document.open();
win.document.write("<html><head><title>"+ititle+"</title></head><body>");
win.document.write('<div style="position:absolute;width:'+ix+'px;height:'+iy+'px;left:0px;top:0px">');
win.document.write("<img src="+ifile+"></div></body></html>");
win.document.close();
win.focus();
}

function popup(ziel,name,eigen) {
window.open(ziel,name,eigen);
}