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