    function open_win ( addr, width, height, title )
    {
        r = window.open( addr, '', "width="+width+", height="+height+", location=0, menubar=0, resizable=0, scrollbars=1, status=0, titlebar=0, toolbar=0, screenX=100, left=100, screenY=30, top=60 ");
        return r;
    }
    function openPic(image, width, height) {
        var win;
        if( win ) {
            win.close();
        }
        win = window.open( '', 'win', 'location=0, toolbar=0, menubar=0, scrollbars=0, height='+height+', width='+width+', status=0' );
        win.document.write( '<html><head><title>ТД Брик Филд</title></head>' );
        win.document.write( '<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">' );
        win.document.write( '<a href="javascript: window.close()" title="Закрыть окно"><img src="http://www.td-brickfield.ru/'+image+'" width="'+width+'" height="'+height+'" border="0" /></a>' );
        win.document.write( '</body></html>' );
        win.document.close();
    }