function countLink(link_id) {

	var serverPage = basedir + "plugins/weblinks/countlink.php";

	var val = "link_id=" + link_id;

	myRequest = new ajaxObject(serverPage, countLinkResponse);

	myRequest.update(val);

}



function countLinkResponse(responseText, responseStatus) {

	if(responseStatus == 200) {

	}

	else {

		alert(responseStatus + lang['_ERROR']);

	}

}
