function img(id,w,h) {
    var date = new Date();
    var t= date.getTime();
    var left = (screen.width - w ) / 2;
    var top  = (screen.height - h ) / 2;
    imgWin = open("", "ImageWindow"+t, "width="+w+",height="+h+", left="+left+", top="+top+",  resizable=no, scrollbars=no, menubar=no, toolbar=no, status=yes");
    imgWin.document.open();
    imgWin.document.write("<html><head><title>Фотография</title></head><body style=");
    imgWin.document.write("'text-align:center;margin:0px;padding:0px;height:100%;cursor:pointer'");
    imgWin.document.write(" onclick='window.close();'>");
    imgWin.document.write("<img src='/res/scat/"+id+"/main.jpg' width='"+w+"' height='"+h+"' alt='Кликните, чтобы закрыть окно'/>");
    imgWin.document.write("</body></html>");
    imgWin.document.close();
    return false;
}
function img_staff(id,w,h) {
    var date = new Date();
    var t= date.getTime();
    var left = (screen.width - w ) / 2;
    var top  = (screen.height - h ) / 2;
    imgWin = open("", "ImageWindow"+t, "width="+w+",height="+h+", left="+left+", top="+top+",  resizable=no, scrollbars=no, menubar=no, toolbar=no, status=yes");
    imgWin.document.open();
    imgWin.document.write("<html><head><title>Фотография</title></head><body style=");
    imgWin.document.write("'text-align:center;margin:0px;padding:0px;height:100%;cursor:pointer'");
    imgWin.document.write(" onclick='window.close();'>");
    imgWin.document.write("<img src='/res/staff/"+id+"' width='"+w+"' height='"+h+"' alt='Кликните, чтобы закрыть окно'/>");
    imgWin.document.write("</body></html>");
    imgWin.document.close();
    return false;
}
function img_photo(id,w,h) {
    var date = new Date();
    var t= date.getTime();
    var left = (screen.width - w ) / 2;
    var top  = (screen.height - h ) / 2;
    imgWin = open("", "ImageWindow"+t, "width="+w+",height="+h+", left="+left+", top="+top+",  resizable=no, scrollbars=no, menubar=no, toolbar=no, status=yes");
    imgWin.document.open();
    imgWin.document.write("<html><head><title>Фотография</title></head><body style=");
    imgWin.document.write("'text-align:center;margin:0px;padding:0px;height:100%;cursor:pointer'");
    imgWin.document.write(" onclick='window.close();'>");
    imgWin.document.write("<img src='/res/photo/"+id+"' width='"+w+"' height='"+h+"' alt='Кликните, чтобы закрыть окно'/>");
    imgWin.document.write("</body></html>");
    imgWin.document.close();
    return false;
}
