<!--

	function sndReq_UpdatePrice() {
		destURL = 'update_price.jsp';
		reqPricing = createXMLRequestObject();
		reqPricing.onreadystatechange = handleResponsePrice;
		reqPricing.open('post', destURL);
		reqPricing.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded'); 
		reqPricing.send("");		
	}
	
	function handleResponsePrice() {
	
	
		if (reqPricing.readyState == 4) {
		  testResponse(reqPricing);
		  
			var response = reqPricing.responseText;
			parent.document.getElementById("divPrice").innerHTML = response;
			//parent.document.getElementById("divPrice").className = "priceValueCurrent";
			
			// Clear the event handler
			reqPricing.onreadystatechange = emptyFunction;
			
		} else {
			// waiting for the price request
		}
	}
	
-->
