function expand(thistag, tag) {
   styleObj=document.getElementById(thistag).style;
   if (styleObj.display=='none')
   {
   	styleObj.display='';
	tag.innerHTML = "Truncate text";
   }
   else 
	 {
   	styleObj.display='none';
    tag.innerHTML = "Read more";
   }
}
