    var check_timer;
    var checkHS_timer;
    var ajaxObject;
    function check_product(pID) {
        if (support_ajax != false) { 
            document.getElementById("delais").innerHTML = '<img src="/images/18.gif" border="0">';

            ajaxObject = new sack();
            
            var url = "check_product.php"
            ajaxObject.requestFile = url;    // Specifying which file to get
            ajaxObject.method = "POST";    
            ajaxObject.setVar("pID",pID);    
            ajaxObject.onCompletion = function() 
                        { 
                            clearTimeout(checkHS_timer);
                            document.getElementById("delais").innerHTML = ajaxObject.response;
                              document.getElementById("panier").innerHTML = '<table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox"><tr class="infoBoxContents"><td align=right><input type="hidden" name="products_id" value="' + pID + '"><input type="image" src="includes/languages/french/images/buttons/button_in_cart.gif" border="0" alt="Ajouter au panier" title=" Ajouter au panier "></td></tr></table>';                                  
                            var haystack = " " + ajaxObject.response;
                            var i = haystack.indexOf(  "Exp", 0 ); // returns -
                            var j = haystack.indexOf(  "Reload", 0 ); // returns -
                            if (j>0) {
                                window.location.reload();
                            } else if (i>0) {
    
                            } else {
                              document.getElementById("panier").innerHTML = '';
                            }
                            

                        }
            check_timer = setTimeout("ajaxObject.runAJAX();","100");        // Execute AJAX function 
            checkHS_timer = setTimeout("checkHS("+pID+")",3000);
        }
    }
    
    function checkHS(pID) {
    clearTimeout(check_timer);
    document.getElementById("delais").innerHTML ="Expédition sous 3 à 10 jours";
                              document.getElementById("panier").innerHTML = '<table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox"><tr class="infoBoxContents"><td align=right><input type="hidden" name="products_id" value="' + pID + '"><input type="image" src="includes/languages/french/images/buttons/button_in_cart.gif" border="0" alt="Ajouter au panier" title=" Ajouter au panier "></td></tr></table>';      
    }
    
    function check_product_noajax(status, pID) {

            document.getElementById("delais").innerHTML = '<img src="/images/18.gif" border="0">';
                            document.getElementById("delais").innerHTML = status;
                            var haystack = " " + status;
                            var i = haystack.indexOf(  "Exp", 0 ); // returns -
                            var j = haystack.indexOf(  "Reload", 0 ); // returns -
                            if (j>0) {
                                window.location.reload();
                            } else if (i>0) {
                              document.getElementById("panier").innerHTML = '<table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox"><tr class="infoBoxContents"><td align=right><input type="hidden" name="products_id" value="' + pID + '"><input type="image" src="includes/languages/french/images/buttons/button_in_cart.gif" border="0" alt="Ajouter au panier" title=" Ajouter au panier "></td></tr></table>';      
                            } else {
                              document.getElementById("panier").innerHTML = '';
                            }

    }    