function NewWindow(co,width,height,scroll)
{
  window.open(co,"","toolbar=0,location=0,directories=0,menuBar=0,scrollbars="+scroll+",resizable=1,width="+width+",height="+height+",left=0,top=0");
}

function buy(zbozi_id)
{
    new Ajax.Updater('kosik',
                                  '/include/kosik_post.php',
                                  {    method: 'post',
                                        parameters : {action:'add',
                                                                 zbozi_id: zbozi_id
                                                              },
                                        onLoading : function (){
                                            $('kosik').update('<center><img src="/gif/loading.gif" alt="nahravám" /><br>Prosím počkejte. Aktualizuji.</center>');
                                            $('kosik').innerHTML;
                                        }
                                   }
                                   );
}
function refresh_cart(id_zbozi,pocet)
{
    document.odeslat_zmeny.typ_akce.value=1;
    document.odeslat_zmeny.id_zbozi.value=id_zbozi;
    document.odeslat_zmeny.pocet_kusu.value=pocet;
    document.odeslat_zmeny.submit();
}

function delete_cart(id_zbozi)
{
    document.odeslat_zmeny.typ_akce.value=2;
    document.odeslat_zmeny.id_zbozi.value=id_zbozi;
    document.odeslat_zmeny.pocet_kusu.value=0;
    document.odeslat_zmeny.submit();
}


function change_dop(typ)
{
    document.odeslat_zmeny.typ_akce.value=3;
    document.odeslat_zmeny.id_zbozi.value=typ;
    document.odeslat_zmeny.pocet_kusu.value=0;
    document.odeslat_zmeny.submit();
}

