//Browser Support Code 

    var xmlhttp = false;  // The variable that makes Ajax possible! 
     
    try{ 
		//If javascript version is greater than 5
		xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
		//alert ("you are using IE");         
    } catch (e){ 
        // If not, use the older active x object
        try{ 
		// If you are using IE
            xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
			//alert ("you are using IE (2)");
        } catch (E) {            
			// Else we must be using a non-IE browser
			xmlhttp = false;
			//alert ("you are using a non-IE brower");
        } 
    } 
	
//If you are using a non-IE brower, create a javascript instace of the object
	if (!xmlhttp && typeof XMLHttpRequest != 'undefined'){
		xmlhttp = new XMLHttpRequest();
		//alert ("You are not using Microsoft Internet Explorer");
	}
	
function makerequest(serverPage, objID, e){

	
	var obj = document.getElementById(objID);
	obj.style.visibility = "visible";
		obj.style.height = "120px";
		obj.style.width = "300px";
	
	
 	
	var posx = 0;
	var posy = 0;
	
	posx = e.clientX + document.body.scrollLeft;
	posy = e.clientY + document.body.scrollTop;
	apDiv1.style.left = (posx - 350) + "px";
	apDiv1.style.top = (posy - 200) + "px";


	
		
	xmlhttp.open("GET", serverPage);

	xmlhttp.onreadystatechange = function(){

		if (xmlhttp.readyState == 4 && xmlhttp.status == 200){

			obj.innerHTML = xmlhttp.responseText;
		}
	}
	xmlhttp.send(null);
	
}

function makerequest2(serverPage, objID, e){

	
	var obj = document.getElementById(objID);
	obj.style.visibility = "visible";
		obj.style.height = "120px";
		obj.style.width = "300px";
	
	var posx = 0;
	var posy = 0;
	
	posx = e.clientX + document.body.scrollLeft;
	posy = e.clientY + document.body.scrollTop;
	apDiv1.style.left = (posx - 350) + "px";
	apDiv1.style.top = (posy - 20) + "px";


	
		
	xmlhttp.open("GET", serverPage);

	xmlhttp.onreadystatechange = function(){

		if (xmlhttp.readyState == 4 && xmlhttp.status == 200){

			obj.innerHTML = xmlhttp.responseText;
		}
	}
	xmlhttp.send(null);
	
}

function hidePrices (objID){
		tObj = document.getElementById(objID);
		tObj.style.visibility = "hidden";
		tObj.style.height = "0px";
		tObj.style.width = "0px";
}