// JScript File

function add_product_to_cart(idProduitToAdd){

    if(autorise){
        
        if (idProduitToAdd != '' )
        {
            var strParams = "typeRequete=1&idProduit=" + idProduitToAdd
    		
		    afficherLoading();
    		
            sendHTTPPOST(page_traitement_call_ajax, strParams, update_iframe_cart);
                            
        }else{

            alert('ERROR!!!')          

        }    
    
    }else{

        alert(MSGC00007)
    }


    
}

function delete_product_in_cart(idProduitToDelete){

    if (idProduitToDelete != '' )
    {
        var strParams = "typeRequete=2&idProduit=" + idProduitToDelete
		
		afficherLoading();
		
        sendHTTPPOST(page_traitement_call_ajax, strParams, update_iframe_cart);
                        
    }else{

        alert('ERROR!!!')          

    }
    
}


function update_iframe_cart(arrReponses){
    
    var resultats = arrReponses.split(",")   
                        
    if(resultats[0] == '1'){
    
        var randomnumber=Math.floor(Math.random()*11)
        parent.document.getElementById("iFrame_cart").src = parent.document.getElementById("iFrame_cart").src + '?value=' + randomnumber            

        cacherLoading(); 
         
    }else if(resultats[0] == '2'){
    
        cacherLoading();
        alert(resultats[1]);     
        window.location = '/' + GD_VERSION_NAME + '/compte/connexion.aspx';   
          
    }else{
    
        cacherLoading();
    
        alert(resultats[1]);
    
    }       
    
}


function afficherLoading(){parent.parent.document.getElementById("loadingDiv").style.display='block';}

function cacherLoading(){parent.parent.document.getElementById("loadingDiv").style.display='none';}

function fermer_la_fenetre(){parent.parent.tb_remove();}
