<!--
    /************************************************************************
    *   Project Specific JavaScript
    ************************************************************************/
	
	/************************************************************************
	*   Function setCSSClass()
	*       toggles the Hide / Show style of an element on the page
	*
	************************************************************************/ 
	function setCSSClass(p_objElement, p_strClass)
	{
        document.getElementById(p_objElement).className = p_strClass;
	} 
   
//-->

