/// открываед окно с заданными параметрами ширины и высоты

function OpenSepWin(url, width, height) {
   if (SepWin) SepWin.close();
   SepWin=window.open (url, 'SepWin', 'width='+width+',height='+height+',resizable=0');
   SepWin.focus();
}
