function openImage(location,w,h,alt)
{
if(alt==null)alt="Увеличенное изображение";
newWindow = window.open("", "fullsize", "width="+w+",height="+h+",toolbar=0,scrollbars=0,resizable=1,location=no,directories=no,status=no");
newWindow.document.write("<html><head><title>"+alt+"</title></head>")
newWindow.document.write("<body topmargin='0' leftmargin='0' marginwidth='0' marginheight='0'>")
newWindow.document.write("<img src=" + location + " border='0'>")
newWindow.document.write("</body></html>");
newWindow.focus();
newWindow.document.close();
}
