function countClick(obj)
{
//	baseurl = "http://meandeviation.test/utils/clickcount/clickcount.php?url=";
	baseurl = "http://www.meandeviation.com/utils/clickcount/clickcount.php?url=";
	if ( obj.href != "" ) {
		url = baseurl + obj.href;
	//	alert(obj.href);
		top.location.href = url;
		return false;
	} else {
		return true;
	}
}
