﻿function addCart()
{
    AJS.fx.fadeIn(document.body,{duration:80,to:0.7});
    if (document.getElementById("container") != null)
    {
        AJS.fx.fadeIn(document.getElementById("left"),{duration:80,to:0.4});
        AJS.fx.fadeIn(document.getElementById("center"),{duration:80,to:0.4});
        AJS.fx.fadeIn(document.getElementById("right"),{duration:80,to:0.4});
    }
    if (document.getElementById("container2") != null)
    {
        AJS.fx.fadeIn(document.getElementById("left2"),{duration:80,to:0.4});
        AJS.fx.fadeIn(document.getElementById("center2"),{duration:80,to:0.4});
    }
    var l = nw_findPosX(document.getElementById("page"))+380;
    var t = 300;
    var c = document.createElement("div");
    c.className = "loadingDiv";
    var i = document.createElement("img");
    i.setAttribute("src","/img/busy.gif");
    i.setAttribute("width","20");
    i.setAttribute("height","20");
    c.appendChild(i);
    var s = document.createElement("span");
    s.innerHTML = "Sto aggiungendo al tuo carrello la canzone/album selezionato"
    c.appendChild(s);
    c.style.top = t + "px";
    c.style.left = l + "px";
    document.body.appendChild(c);
}