function onclickremove()
{
	var linkek = document.getElementsByTagName("a");
	
	for(i in linkek)
	{
		if(linkek[i].onclick != null)
		{
			var h = linkek[i].href;
			//alert(h+"\n"+linkek[i].onclick);
			//linkek[i].removeAttribute("onclick");
			linkek[i].onclick = falsefv;
			//alert(h+"\n"+linkek[i].onclick);
			break;
		}
	}
}
function falsefv()
{
	return false;
}

