
var SepWin;

function OpenSepWin(url, width, height)
{

 if(SepWin)
 SepWin.close();

 if(!width)
 width = 1280;

 if(!height)
 height = 800;


 SepWin=window.open (url, 'SepWin', 'width='+width+',height='+height+',resizable=0');
 SepWin.document.open();
 SepWin.document.writeln('<HTML><HEAD><TITLE>Изображение</TITLE></HEAD><BODY leftmargin=0 topmargin=0><img src='+url+' border=0></BODY></HTML>');
 SepWin.document.close();
 SepWin.focus();
}

