
	var ahj_product_req;	
	var ahj_product_target;	
	
	function ahj_loadProduct() 
	{
		product_id=current_product;
		var ahj_product_url = 'http://www.sterlingwwe.com/ahj_load_product.php?pid='+product_id; 
		//alert(ahj_product_url);
		if(ahj_product_req)
		{
			ahj_product_req.open("POST", ahj_product_url, true);
			//ahj_product_req.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
			ahj_product_req.send(null);
			//alert(ahj_product_url);
			ahj_product_req.onreadystatechange = ahj_loadProduct_processReqChange;
		}
		//return true; 
	}
	
	function ahj_loadProduct_processReqChange() 
	{
		//alert('1');
		if(ahj_product_req.readyState==4) 
		{
			//alert(ahj_product_req.status);
			if(ahj_product_req.status==200)
			{
				var ahj_response=ahj_product_req.responseText;
				//alert(ahj_product_target);
				//alert(ahj_response);
				//var js=find_js(ahj_response);
				//eval(js);
				document.getElementById('contents').innerHTML=ahj_response;
			} 
			//else alert("There was a problem retrieving the XML data");
		}
	}
	
	if(window.XMLHttpRequest) 	  ahj_product_req  = new XMLHttpRequest();	 
	else if(window.ActiveXObject) ahj_product_req  = new ActiveXObject("Microsoft.XMLHTTP");
