function open_image(path,w,h){

         p='width='+w+',height='+h+',resizable=yes,toolbar=no,location=no,directories=no,status=no,scrollbars=no,menubar=no';
         var showWindow = window.open("", "image", p);
        showWindow.document.write("<html><head><title></title></head><body MARGINHEIGHT=0 TOPMARGIN=0 MARGINWIDTH=0 LEFTMARGIN=0>");
        showWindow.document.write("<img src='"+path+"' onClick='window.close()' alt='Закрыть'  onMouseOver=this.style.cursor='pointer' border='0'>");
        showWindow.document.write("</body></html>");
        showWindow.document.close();

        return false;
}