function expand(thistag, tag) {
   styleObj=document.getElementById(thistag).style;
   if (styleObj.display=='none')
   {
   	styleObj.display='';
	tag.innerHTML = "[Click here to hide]";
   }
   else {
   	styleObj.display='none';
    tag.innerHTML = "[Click here to read the review]";
   }
}

