	var nwh = null;
	function showLink(u) {
	
		hideLink();
		document.getElementById(u).style.display = "";
		if(location.hash == "") location.href += "#";
	}
		
	function hideLink() {
		var d = document.getElementsByTagName("DIV");
		for(var i=0; i<d.length; i++)
			if(d[i].id.substr(0,3) == "lnk") d[i].style.display = "none";
	}

	hideLink();	
	
	window.name = "linkIndex";
