function showLink(id)  {
	document.getElementById(id).style.display = "block";
}
function hideLink(id)  {
	document.getElementById(id).style.display = "none";
}