function countLink(link_id) {
		//Check FF / IE
			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;      
		}		 }  		 }
		
		//Load the comments
		xmlHttp.onreadystatechange = function() {
		if(xmlHttp.readyState==4)
		  {
		  //	alert(xmlHttp.responseText)
			//document.getElementById('c_' + field_id).innerHTML = xmlHttp.responseText;
		  }
		  }
	var myurl='/includes/functions/linkcount.asp?link_id=' + link_id;
	myRand=parseInt(Math.random()*99999999);  // cache buster

  xmlHttp.open("GET",myurl + "&rand=" + myRand,true);
  xmlHttp.send(null);  
  }
