/**
* Adiciona um produto ao carrinho
*/
function AddCarrinho(codProduto)
{

//    document.location.href='https://maniabrinquedos.websiteseguro.com/cesta.php?acao=addproduto&codproduto='+codProduto;
    document.location.href='cesta.php?acao=addproduto&codproduto='+codProduto;
}


function IrPassoCompra(valor)
{
    switch(valor)
    {
        case 1:
            document.location.href='cesta.php';
            break;
        case 2:
            document.location.href='login.php?from=Carrinho';
            break;
        case 3:
            document.location.href='entrega.php';
            break;
        case 4:
            document.location.href='pagamento.php';
            break;
        case 5:
            document.locarion.href='confirmacao.php';
            break;
        default:
            document.location.href='cesta.php';
            break;
    }
}

function click2call(click2call)
{
	window.open(click2call, "click2call",'top=100,left=100,height=370,width=338,location=no,resizable=no,scrollbars=no,status=no'); 
}