// JavaScript Document

function GetXmlHttpObject()
{
	if (window.XMLHttpRequest)
	{
	  // code for IE7+, Firefox, Chrome, Opera, Safari
	  return new XMLHttpRequest();
	}
	if (window.ActiveXObject)
	{
	  // code for IE6, IE5
	  return new ActiveXObject("Microsoft.XMLHTTP");
	}
	return null;
}// JavaScript Document


function showserver(id)
{
		//document.form1.txtDescription.disabled='true'; 
		

		var url="gordonsfiles/pricing.php?id="+id;
		xmlhttp=GetXmlHttpObject();
		xmlhttp.onreadystatechange = function(){
				if(xmlhttp.readyState == 4){
					//alert("yes it was");
					request_response = xmlhttp.responseText;
					document.getElementById("serverinfo").innerHTML="" + request_response;
				}
		}
		xmlhttp.open("GET",url,true);
		xmlhttp.send(null);
}

function roll(obj, highlightcolor, textcolor){
            obj.style.backgroundColor = highlightcolor;
            obj.style.color = textcolor;
        }
