﻿// Carrello ----------------------------------------------------------------
function AddToCart(Item){
    var dtChk=new Date();
    var cmd; 
    if(def=1){
        qta=document.forms.form1.elements["itm"+Item].value;
    }
    else{
        qta=0;
    }
    cmd="10 itm="+Item+";qta="+qta+";";
    cmd+="chk="+dtChk.getDay()+"/"+dtChk.getMonth()+"/"+dtChk.getFullYear();
    cmd+=" "+dtChk.getHours()+":"+dtChk.getMinutes()+":"+dtChk.getSeconds()+";"
    document.form1.Comando.value=cmd;
    document.form1.submit();
}

function AddCart(Item){
    if (Item=="+"){
        return;
    }
    var dtChk=new Date();
    var cmd; 
    
    qta=0;
    cmd="10 itm="+Item+";qta="+qta+";";
    cmd+="chk="+dtChk.getDay()+"/"+dtChk.getMonth()+"/"+dtChk.getFullYear();
    cmd+=" "+dtChk.getHours()+":"+dtChk.getMinutes()+":"+dtChk.getSeconds()+";"
    cmd+="aft=Prodotti.aspx;";
    document.form1.Comando.value=cmd;
    document.form1.submit();
}

function DelArt(IDCarrello,msg){
    if (!confirm(msg)){
        return;
    }
    document.form1.Comando.value="11 idc="+IDCarrello+";";
    document.form1.submit();  
}
function CleanCart(msg){
    if (!confirm(msg)){
        return;
    }
    document.form1.Comando.value="12";
    document.form1.submit();  
}
function OpenCart(){
    window.location="Carrello.aspx";
}
function Includi(IDCarrello){
    document.form1.Comando.value="15 idc="+IDCarrello+";";
    document.form1.submit();  
}
function BackTo(){
    window.location="prodotti.aspx";
}
function Ordina(){
    window.location="Ordine.aspx";
}

function Registrati(){
    window.location="Registrazione.aspx";
}
function ApriStorico(){
    window.location="StoricoOrdini.aspx";
}
//-----------------------------------------------------------------------
