	function on_rowAlt(obj)
	{
	obj.className="cpTertiaryTabLite";
	} 
	function off_rowAlt(obj){
		obj.className="rptVwRowAlt";
	}
	function on_row(obj)
	{
		obj.className="cpTertiaryTabLite";
	} 
	function off_row(obj)
	{
		obj.className="rptVwRow";
	}
	
	



    /* this function shows the pop-up when
     user moves the mouse over the link */
    function Show()
    {
        /* get the mouse left position */
        x = event.clientX + document.body.scrollLeft;
        /* get the mouse top position  */
        y = event.clientY + document.body.scrollTop+34;
        /* display the pop-up */
        Popup.style.display="block";
        /* set the pop-up's left */
        Popup.style.left = x;
        /* set the pop-up's top */
        Popup.style.top = y;
    }
    /* this function hides the pop-up when
     user moves the mouse out of the link */
    function Hide()
    {
        /* hide the pop-up */
        Popup.style.display="none";
    }


                
function checkClick(obj)
{
	if (obj.checked)
	{
		obj.parentNode.parentNode.style.fontWeight="bold";
		obj.parentNode.parentNode.className="cpTertiaryTab";
		
		
	}
	else
	{
		obj.parentNode.parentNode.style.fontWeight="normal";
		obj.parentNode.parentNode.className="rptVwRow";
		
	}
}

function doMe(obj1)
	{
	if (obj1.className="cpTertiaryTabLite")
	{
		obj1.className="rptVwRow";
	}
	else {}

   }
   
   function doMe2(obj1)
	{
	if (obj1.className="rptVwRow")
	{
		obj1.className="cpTertiaryTabLite";
	}
	else {}

   }

