
var SepWin;

function OpenSepWin(url, width, height)
{
if (SepWin) SepWin.close();
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+' width='+width+' height='+height+' border=0></BODY></HTML>');
SepWin.document.close();
SepWin.focus();
}
