// JavaScript Document

//We have some helper functions in here.
//This is to expand the help text on search page.

function expand(thistag){
   styleObj=document.getElementById(thistag).style;
   if(styleObj.display=='none'){styleObj.display='';}
   else {styleObj.display='none';}
}
