// JavaScript Document

function hrefUrl(url){
			location.href=url;
		}
 function DeleteCart(hdn_product_id,divId){
           $.ajax({
           type: "POST",
           url: "/module/ajaxfile/deletecart.php",
           data: "hdn_product_id="+hdn_product_id,
           success: function(msg){$("#"+divId).html(msg);
           //alert(msg);
         }
        }
      );
    }
  function DeleteCart_(hdn_product_id){
           $.ajax({
           type: "POST",
           url: "/module/ajaxfile/deletecart_.php",
           data: "hdn_product_id="+hdn_product_id,
           success: function(msg){$("#cartModule").html(msg);
           //alert(msg);
         }
        }
      );
    }	
 function addCart(hdn_product_id){
           $.ajax({
           type: "POST",
           url: "/module/ajaxfile/addcart.php",
           data: "hdn_product_id="+hdn_product_id,
           success: function(msg){$("#myCart").html(msg); flash_notice();
           //alert(msg);
         }
        }
      );
    }

