function processAjax(url,divname) {
	if (window.XMLHttpRequest) { // Non-IE browsers
		req = new XMLHttpRequest();
		eval("req.onreadystatechange = function() {targetDiv('"+divname+"');update('"+divname+"')}");
		try {
			req.open("GET", url, true);
		} catch (e) {
			alert(e);
		}
		req.send(null);
	} else if (window.ActiveXObject) { // IE
		req = new ActiveXObject("Microsoft.XMLHTTP");
		if (req) {
			eval("req.onreadystatechange = function() {targetDiv('"+divname+"');update('"+divname+"')}");
			req.open("GET", url, true);
			req.send();
		}
	}


}

function update(divname) {
	$(".instock").each(function() {
		var qohtext=$(this).html();
		//if (qohtext.match(/include virtual/)) {qohtext=document.getElementById('[-- PRODUCT.RecordNumber --]_searchqoh').innerHTML};
		var num;
		if (qohtext.match(/not available/i)) {
			num=0;
		} else {
			num=qohtext.replace(/[^0-9]/g,"");
		}
		var message="Our inventory is computer linked to our website and updated instantly for each order placed.  If we say it is in stock you can bet it is in stock.";
		if (num>0) {
			$(this).html('<img src="/media/GPSNOWdesign/in_stock1.gif" onmouseout="hideTooltip()" onmouseover="showTooltip(event,message);return false" />');
		} else {
			$(this).html('<img src="/media/GPSNOWdesign/wOutOfStock.jpg" onmouseout="hideTooltip()" onmouseover="showTooltip(event,message);return false" />');
		}
	});

	$(".freeship").each(function() {
		var id=$(this).text();
		var price=$("#"+id+"_Price").text();
		if (price=="$0.00") {$("#"+id+"_origprice").html('')}
		var saleamount=$("#"+id+"_SaleAmount").text();
		if (saleamount) {price=saleamount};
		price=parseFloat(price.replace(/[^0-9\.]/g,""));
		var message1="Orders with merchandise totals over $99.00 are provided a free shipping option.  Free shipping is either by Postal Service Priority Mail for lighter orders or by FedEx Home Delivery (Ground) for heavier orders.  Unlike most companies, we reduce all shipping options by the amount the free shipping would have been so you still save even if you choose another shipping option.<br><br>And all shipping options, including free shipping, ship TODAY* for on-line orders placed by 5:00 p.m. Central Time.<br><br>*Orders received after 5:00 p.m. Central Time or on weekends or holidays ship on the next business day.  Phone orders may not ship the same day.";
		if (price>freeship_amount) {$(this).html('<img src="/media/GPSNOWdesign/wFreeShip.jpg" onmouseout="hideTooltip()" onmouseover="showTooltip(event,message1);return false" />')} else {$(this).html('')};
	});

}

function targetDiv(divname) {
	if (req.readyState == 4) { // Complete
		if (req.status == 200) { // OK response
			document.getElementById(divname).innerHTML = req.responseText;
			hideElement(document.getElementById(divname),'tr','headerdiv');
			hideElement(document.getElementById(divname),'tr','headerdiv2');
			hideElement(document.getElementById(divname),'tr','footerdiv');
		} else {
			alert("Problem: " + req.statusText);
		}
	}
} 
