function openImg(x)
{
var x;
image=open("","new","fullscreen,toolbar=no,menubar=no,scrollbar=no,location=no,status=no,resizable=yes");
image.document.open();
image.document.write("<html><head><title>Фотография</title><style type=text/css>");
image.document.write("body {margin:0;overflow:auto;scrollbar-base-color:#CDDCE2}</style>");
image.document.write("<script>function closeIt(){close();}</script></head><body bgcolor=#CDDCE2>");
image.document.write("<table border=0 height=100% align=center valign=center><tr><td><img src=");
image.document.write(x);
image.document.write(" border=0 onClick=closeIt(); onMouseOver=this.style.cursor='hand'; alt=\"Закрыть\"></table></body></html>");
image.document.close();
}
