	//simple AJax
	var xmlObject = GetXmlHttpObject();
	
	function GetXmlHttpObject()
	{
		var xmlHttp=null;
		try
		  { // Firefox, Opera 8.0+, Safari
		  	xmlHttp=new XMLHttpRequest();
		  }
		catch (e)
		  {		  // Internet Explorer
		  try
		    {
		    	xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
		    }
		  catch (e)
		    {
		   		xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
		    }
		  }
		return xmlHttp;
	}
	//process request
	function makerequest(objid,page){
		var obj = document.getElementById(objid);
		xmlObject.open("GET",page);
		xmlObject.onreadystatechange = function(){
			//obj.innerHTML = "<img src='loader.gif'>";
		if(xmlObject.readyState == 4){
			if(xmlObject.status == 200){
				obj.innerHTML = xmlObject.responseText;
				}
			}
		}
		xmlObject.send(null);
		
	}
	
	function hiliteme(what) {
  		what.style.cursor = "pointer";
  		what.style.textDecoration = "none";
	}

	function restoreme(what) {
		what.style.textDecoration= "underline";
	}
	
	function hiliteme2(what)
	{
		what.style.cursor = "pointer";
	}