 function openIndex(imgadr,imgwidth,imgheight)
{ 
if (imgwidth<screen.width)
{var istw=imgwidth+16;} else {istw=screen.width-96;}
if (imgheight<screen.height)
{var isth=imgheight;} else {isth=screen.height-96;}
var OpenWindow=window.open('', 'newwin','width='+istw+',height='+isth+',toolbar=no,menubar=no,'+
  'location=no,status=no,resizable=no,scrollbars=yes');
OpenWindow.focus();
OpenWindow.document.open();
OpenWindow.document.write('<HTML>');
OpenWindow.document.write('<TITLE>Архитектор Софиева Нина.  Тел. 8-906-770-32-32</TITLE>');
OpenWindow.document.write('<head>');
OpenWindow.document.write('<link rel="Shortcut Icon" href');
OpenWindow.document.write('</head>');
OpenWindow.document.write('<BODY leftmargin=0 topmargin=0 marginwidth=0 marginheight=0>');
OpenWindow.document.write('<center>');
OpenWindow.document.write("<a href='' onClick='self.close()'>");
OpenWindow.document.write('<img src="'+imgadr+'" border=0 alt="Закрыть">');
OpenWindow.document.write('</a>');
OpenWindow.document.write('</center>');
OpenWindow.document.write('</HTML>');
OpenWindow.document.close();
}
