var MiniWin;
function OpenMiniWin(url, width, height) {
   if (MiniWin) MiniWin.close();
   MiniWin=window.open (url, 'MiniWin', 'width='+width+',height='+height+',resizable=0,screenX=40,screenY=30,top=40,left=30');
   MiniWin.document.open();
   MiniWin.document.writeln("<HTML><HEAD><TITLE>::: BAU WERKSTOFF ::: Вентилируемые фасады. Панели Trespa (Треспа)</TITLE></HEAD><BODY leftmargin=0 topmargin=0><img src="+url+" width="+width+" height="+height+" border=0></BODY></HTML>");
   MiniWin.document.close();
   MiniWin.focus();
}
