function getXMLHttp() {
	var xmlHttp

	try {
		// Firefox, Opera 8.0+, Safari
		xmlHttp = new XMLHttpRequest();
	} catch (e) {
		// Internet Explorer
		try {
			xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
			try {
				xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
			} catch (e) {
				alert("Your browser does not support AJAX!")
				return false;
			}
		}
	}
	return xmlHttp;
}

function makeRequest(hoverItem, divId, cache) {
	//var xmlHttp = getXMLHttp();

	//xmlHttp.onreadystatechange = function() {
		//if (xmlHttp.readyState == 4) {
			//xmlHttp.responseText
			handleResponse(divId, hoverItem);
		//}
	//}

	//xmlHttp.open("GET", url, true);
	//if (!cache) {
	//	xmlHttp.setRequestHeader("If-Modified-Since", "Thu, 1 Jan 1970 00:00:00 GMT");
	//	xmlHttp.setRequestHeader("Cache-Control", "no-cache");
	//}
	//xmlHttp.send(null);
}

function handleResponse(divId, hoverItem) {
	if (Get_Cookie('rowView')==null) {
	var hoverDiv=document.getElementById(divId);
	hoverItemNow=document.getElementById(hoverItem);
	//hoverDiv.innerHTML = response;
	hoverDiv.style.top=hoverItemNow.offsetTop+25+'px';
	hoverDiv.style.left=hoverItemNow.offsetLeft+75+'px';
	hoverDiv.style.display='block';
	}
}

function hideRequest(divId){
	document.getElementById(divId).style.display='none';
}

