function ajaxCounterInc() 
{
	requestVar = "ajaxcounter.php?action=incCounter";
	
	if (window.XMLHttpRequest) 
		xmlhttp = new XMLHttpRequest();
	else // ie6...
		xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
	
	xmlhttp.open("GET", requestVar, false);
	
	xmlhttp.send(null);
}

