function show(text_id,link_id){
	var txt="";

	try{
		var text = document.getElementById(text_id);
		var link = document.getElementById(link_id);
		text.style.display = "inline";
		link.innerHTML = "Hide More...";
		link.href = "javascript:hide('"+ text_id +"','"+ link_id +"');";
	}catch(err){
		txt="There was an error on this page.\n\n";
		txt+="Error description: " + err.description + "\n\n";
		txt+="Click OK to continue.\n\n";
		alert(txt);
		}
}
function hide(text_id,link_id){
	var txt="";

	try{
		var text = document.getElementById(text_id);
		var link = document.getElementById(link_id);
		text.style.display = "none";
		link.innerHTML = "Show More...";
		link.href = "javascript:show('"+ text_id +"','"+ link_id +"');";
	}catch(err){
		txt="There was an error on this page.\n\n";
		txt+="Error description: " + err.description + "\n\n";
		txt+="Click OK to continue.\n\n";
		alert(txt);
		}
}
