window.onload = SetupPage;

function SetupPage()
{
	var ndContent = document.getElementById("contentleftcolumn");
	
	if (!ndContent) return false;

	var ndLinks = ndContent.getElementsByTagName("a");
	for ( var i=0; i<ndLinks.length; i++ )
	{
		//alert(ndLinks[i].className);
		if ( ndLinks[i].className.indexOf("hitcount") != -1)
		{
			ndLinks[i].onclick = UpdateHitcount;
		}
	}
}

function UpdateHitcount()
{
	var id = this.getAttribute("id").substr(1);
	var varList = new Array();
	varList["link_id"] = id;
	//alert(id);
	asp = new ScriptExec("hitcount.aspx", varList, "POST");

	if(asp.Execute(FollowURL, Array(this)));
		return false;
}

function FollowURL(anchor)
{
	window.open(anchor.getAttribute("href"),"_self");
}