function open_nwin(addr, name, width, height)
{
    n_foto=window.open(addr,name,"width="+width+", height="+height+", top=30, left=30, menubar=0, toolbar=1, location=0, directories=0, status=0, scrollbars=1, resizable=0");
    window.n_foto.focus();
}
    function open_win1 ( addr, width, height, name ) {
        r = window.open ( addr, name, "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 open_win2 ( addr, width, height, name )
    {
        r = window.open ( addr, 'name', "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 ");
        window.r.focus();
       // return false;
    }

    var img_window;
    function open_win_(url,width,height) {
        if(img_window && img_window.close) {
        img_window.close();
        }
        img_window = window.open('','img_window','location=0,toolbar=0,menubar=0,scrollbars=0,status=0,height='+height+',width='+width);
        img_window.document.write('<html><head><title>da-shop</title><base href="<?= $_config[wpath] ?>"></head>');
        img_window.document.write('<body leftmargin="0" topmargin="0" marginwidth=0 marginheight=0 bgcolor="#FFFFFF">');
        img_window.document.write('<table cellspacing="0" cellpadding="0" border="0" width="'+width+'" height="'+height+'" align="center"><tr><td align="center" valign="middle"><a href="javascript: window.close()" title="Закрыть окно"><img src="'+url+'" border="0" align="center" /></a></td></tr></table>');
        img_window.document.write('</body></html>');
        img_window.document.close();
    }

    function open_win(url,width,height) {
        if(img_window && img_window.close) {
        img_window.close();
        }
        img_window = window.open('','img_window','location=0,toolbar=0,menubar=0,scrollbars=0,status=0,height='+height+',width='+width);
        img_window.document.write('<html><head><title>da-shop</title><base href="<?= $_config[wpath] ?>"></head>');
        img_window.document.write('<body leftmargin="0" topmargin="0" marginwidth=0 marginheight=0 bgcolor="#FFFFFF">');
        img_window.document.write('<table cellspacing="0" cellpadding="0" border="0" width="'+width+'" height="'+height+'" align="center"><tr><td align="center" valign="middle"><a href="javascript: window.close()" title="Закрыть окно"><img src="'+url+'" border="0" align="center" width="'+width+'" height="'+height+'" /></a></td></tr></table>');
        img_window.document.write('</body></html>');
        img_window.document.close();
    }

        function buy( id ){
            document.forms['buy_good'].submit();
        }
function swapBack( id, selected )
{
    var menu = document.getElementById('menu_'+id);
    if( selected )
    {
        menu.src = './i/i_menu_'+id+'_act.gif';
    }
    else
    {
        menu.src = './i/i_menu_'+id+'.gif';
    }
}
