function ToggleMore(id) {
    
    var word=id.split("#"); // Array containing UL id (unid) and Anchor id splitted by # delimiter   
    // word[0] contains (unid)  
	($(word[0]).style.visibility != 'visible') ? $(word[0]).style.visibility = 'visible' : '';	
	var slideEffect = new Fx.Height(word[0], {duration: 50});
	slideEffect.toggle();
	slideEffect = null;
	
	// get the anchor object - anchor id is in word[1]
	var link = document.getElementById(word[1]);    
  
    if (document.all)
   { 
	//Code If IE 4 or 5 or later
	if(link.innerText == 'More...')
	{
	   link.innerText = "Less...";
	}
	else
	{
	  link.innerText = "More...";
	}
   }
  
  //Code if Mozilla/Netscape6+ and all the other Gecko-based browsers

  if (document.getElementById &&!document.all)
  {
    if(link.firstChild.nodeValue == 'More...')
      {
	    link.firstChild.nodeValue = 'Less...';
      }
     else
      {
	    link.firstChild.nodeValue = 'More...';
      }
  }
  
}

