﻿/*Show hide*/
function findElementById(elementId) {
    var theElement = null;
    try {
        if (document.getElementById)
            theElement = document.getElementById(elementId);
        else
            theElement = document.all[elementId];
    }
    catch (e) {
        theElement = null;
    }
    return theElement;
}


function showTab(id) {
    findElementById("box_" + id).style.display = "block";
    findElementById("tab_" + id).className = (id == "comment" ? "on last" : "on");
    findElementById("tab_" + id).blur();
}

function hideTab(id) {
    findElementById("box_" + id).style.display = "none";
    findElementById("tab_" + id).className = (id == "comment" ? "off last" : "off");
}


function fElimina(qty, idProdotto) {
    var valoreqty = qty;
    var idprod = idProdotto;
    //alert(qty);
    //alert(idProdotto);

    //alert(valoreqty);
    window.location = "Cassa.aspx?quantita=" + valoreqty + "&idprodotto=" + idProdotto;
    //alert();

}

function fCambia(qty, idProdotto) {
    var valoreqty = "qty" + qty;
    var idprod = idProdotto;
    //alert(qty);
    //alert(idProdotto);

    valoreqty = document.getElementById(valoreqty).value;
    //alert(valoreqty);
    window.location = "Cassa.aspx?quantita=" + valoreqty + "&idprodotto=" + idProdotto;
    //alert();

}

function VerificaRegistrazione() {
    return;
    alert("ciao");
    document.getElementById("ErroreUsername").innerHTML = "123";
    //document.getElementById("ctl00_ContentPlaceHolderCenter_TUsername01").setAttribute(value, "123444");
    //document.getElementById("TUsername").attributes.setNamedItem(value) = "123444";
    //alert(document.getElementById("ctl00_ContentPlaceHolderCenter_TUsername").innerHTML); //.Text = "123444";
    alert("ciao");
    return true;
}


