

/**********************************************************************
	Function: toggleRelated
	Args: None
	Ret: None
	
	Description: 
************************************************************************/
	function toggleRelated(inId, ref, t)
	{
	  if(document.layers!=null)
	  {
	    document.location = ref;
	    return;
	  }
	  
	  var tmpEl = document.all(inId);
	  if(null == tmpEl)
	  {
	    return;
	  }

    if(tmpEl.className == "WFSELHIDDEN")
    {
      tmpEl.className = "";
	  }
	  else
    {
      tmpEl.className = "WFSELHIDDEN";
	  }
	  hideFocus();
}
	





