// show and hide functions

function fHide(sHideObj)
{
 	
	oHideObj = document.getElementById(sHideObj);	
	oHideObj.style.visibility = "hidden";		
}

function fShow(sShowObj)
{
	
	oShowObj = document.getElementById(sShowObj);
	oShowObj.style.visibility = "visible";		
}

