/****************************************************************************************************************************/
//set Setting
function AddToCart(strURL,a) {
	
	
    var xmlHttpReq4 = false;
    var self = this;
    // Mozilla/Safari
    if (window.XMLHttpRequest) {
        self.xmlHttpReq4 = new XMLHttpRequest();
    }
    // IE
    else if (window.ActiveXObject) {
        self.xmlHttpReq4 = new ActiveXObject("Microsoft.XMLHTTP");
    }
    self.xmlHttpReq4.open('POST', strURL, true);
    self.xmlHttpReq4.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); 
    self.xmlHttpReq4.onreadystatechange = function() { 
        if (self.xmlHttpReq4.readyState == 4) {
            updatenextvdftevent4(self.xmlHttpReq4.responseText);
        }
	 }
    self.xmlHttpReq4.send(getquerynextvdftevent4(a));
   }

function getquerynextvdftevent4(a) 
{	
	var howmany =1;
	qstr ='ptc='+escape(a)+"|"+escape(howmany);
	return qstr;
}

function updatenextvdftevent4(str5){
   document.getElementById("prod_cart").innerHTML = str5;
    window.location='cart.php';
}

