function img(img,w,h) {
    var date = new Date();
    var t= date.getTime();
    imgWin = open("", "ImageWindow"+t, "left=200,top=200,width="+w+",height="+h+", 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='/img/staff/"+img+"' width='"+w+"' height='"+h+"' alt='Кликните, чтобы закрыть окно'/>");
    imgWin.document.write("</body></html>");
    imgWin.document.close();
    return false;
}