function expand(id)
{
     thisId = 'e' + id;
     thisId = document.getElementById(thisId);
     if (thisId != null) {
          if (thisId.length) {
               if (thisId[0].style.display != 'none') {
                    for (var i=0;i<thisId.length;i++) {
			thisId[i].style.display = 'none';
			thisId[i].style.position = 'relative';
		    }
               } else {
                    for (var i=0;i<thisId.length;i++)  {
			thisId[i].style.display = 'inline';
		    }
               }
          } else {
               if (thisId.style.display != 'none') {
		  thisId.style.display = 'none';
		  thisId.style.position = 'relative';
	       } else {
		  thisId.style.display = 'inline';
	       }
          }
//	  htmlObj.blur();
     }
}
