function Warstwa(nr)
{
 Wleft=Math.floor(((screen.width)/2)-250);
 Wtop=Math.floor(((screen.height)/2)-150);
 document.getElementById("w"+nr).style.left = Wleft + "px";
 document.getElementById("w"+nr).style.top = Wtop + "px";
 document.getElementById("w"+nr).style.visibility =
document.getElementById("w"+nr).style.visibility=="hidden" ? "" : "hidden";
}

function okno(img)
{
pozX = Math.floor(((screen.width)/2)-25);
pozY = Math.floor(((screen.height)/2)-25);
window.open('bigFoto.php?name=' + img, 'shop', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,fullscreen=no,channelmode=no,width=100,height=100, left=' + pozX + ', top=' + pozY);
}

function insertTransVal(amount, total)
{
document.basket.transVal.value= amount.toFixed(2);
document.basket.tSum.value = (total + amount).toFixed(2);
}

function PoliczRate(koszyk, numerSklepu)
{
    window.open('http://www.zagiel.com.pl/kalkulator/index_smart.php?action=getklientdet_si_rata&shopNo='+numerSklepu+'&goodsValue='+koszyk, 'Policz_rate','width=630,height=500,directories=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no');
}

function regulamin()
{
    window.open('http://www.zagiel.com.pl/kalkulator/jak_kupic.html', 'nowe_okno','width=600,height=500,directories=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no');
}

function validateOrderForm()
{
    if(document.pla.pay_type.item(0).checked)
    {
        if (document.pla.zgodaRegulamin.checked==false)
        {
            alert ("Zanim złożysz zamówienie, zapoznaj sie z procedura udzielenia kredytu ratalnego eKredyt Żagiel.");
            return false;
        }
        else
        {
            return true;
        }
    }
    else
    {
        return true;
    }
}
