//<![CDATA[
		   


function showHide(caller,shDivName,showText,hideText){
		
		var d = document.getElementById(shDivName);

		d.style.display = d.style.display == "block" ? "none" : "block";
		caller.innerHTML = d.style.display == "none" ? showText : hideText;

}


//]]>
