<!-- 

//Browser Support Code
	if (window.Event) {
	document.captureEvents(Event.MOUSEOVER);
	}
	document.onmouseover = getCursorXY;


function getCursorXY(e) {
	cursX = (window.Event) ? e.pageX : event.clientX + (document.documentElement.scrollLeft ? document.documentElement.scrollLeft : document.body.scrollLeft);
	cursY = (window.Event) ? e.pageY : event.clientY + (document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop);
}

/*function cursorY(m) {
	if (m.pageY) {return m.pageY;}
	else if (m.clientY) {return m.clientY + document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop;}
	else {return null;}
	}
*/
function showInfo(siteno){
	var ajaxRequest;  // The variable that makes Ajax possible!
	
	try{
		// Opera 8.0+, Firefox, Safari
		ajaxRequest = new XMLHttpRequest();
	} catch (e){
		// Internet Explorer Browsers
		try{
			ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
			try{
				ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
			} catch (e){
				// Something went wrong
				alert("Your browser does not support this function!");
				return false;
			}
		}
	}

	// Create a function that will receive data sent from the server
	ajaxRequest.onreadystatechange = function(){
			if(ajaxRequest.readyState == 4){
				document.getElementById('specs').style.top = cursY - 10;
				document.getElementById('specs').style.left = cursX + 30;
				document.getElementById('specs').innerHTML = ajaxRequest.responseText;
				document.getElementById('specs').style.visibility = 'visible';
						
			}
	}
	
	ajaxRequest.open("GET", "/inc/get_info.php?"+siteno, true);
	ajaxRequest.send(null); 
}

function hide(){
	document.getElementById('specs').style.visibility = 'hidden';
}