function Richiesta(ACT, DAT, ID, AREA){
	
	var url = "viewcart.asp?act=" + ACT + "&dat=" + DAT + "&id=" + ID + "&area=" + AREA;
	
	var oXMLHttpRequest = new XMLHttpRequest;
	oXMLHttpRequest.open("GET", url, true);
	oXMLHttpRequest.onreadystatechange=function() {
		if (this.readyState == XMLHttpRequest.DONE) {
			el=document.getElementById("carrello");
			el.innerHTML = oXMLHttpRequest.responseText;
		}
	}
	oXMLHttpRequest.send(null);
}

function RichiestaP(ACT, DAT, ID, AREA){
	
	var url = "viewcartp.asp?act=" + ACT + "&dat=" + DAT + "&id=" + ID + "&area=" + AREA;
	
	var oXMLHttpRequest = new XMLHttpRequest;
	oXMLHttpRequest.open("GET", url, true);
	oXMLHttpRequest.onreadystatechange=function() {
		if (this.readyState == XMLHttpRequest.DONE) {
			el=document.getElementById("carrello");
			el.innerHTML = oXMLHttpRequest.responseText;
		}
	}
	oXMLHttpRequest.send(null);
}
