function expand(thistag, tag) {
   fulltext=document.getElementById(thistag+'full').style;
   showtext=document.getElementById(thistag+'show').style;
   if (fulltext.display=='none')
   {
   	fulltext.display='';
	showtext.display='none';
   }
   else {
   	fulltext.display='none';
   	showtext.display='';
   }
  
	return false;
}

function showusers(tag) {
	tag=document.getElementById(tag).style;
	if (tag.display=='none')
   {
   	tag.display='';
   }
   else {
   	tag.display='none';
   }
	return false;
}