<!--
function showMore(divID) {
  var $more = new String();
  switch(divID) {
  	case "expandtext":
		$more = '<p><i>With the successful launch to Mars of the Phoenix spacecraft on August 4, we begin the search for ';
		$more += 'near surface ice in the northern sub-polar region. We at UTD produced a mass spectrometer, part of the ';
		$more += 'Thermal Evolved Gas Analyze (TEGA) instrument that will analyze surface and sub-surface materials from a ';
		$more += 'trench dug in the surface of Mars. ';
		$more += 'The goal is to find water and perhaps hydrocarbon materials in the water and surrounding soils.</i></p>';
		break;
	default: $more="No more!";
        break;
  } //switch
  document.getElementById(divID).innerHTML = $more+"<a href=\"JavaScript:hideMore('"+divID+"');\">&lt;&lt;&nbsp;Hide</a>";
} //switch

function hideMore(divID) {
  document.getElementById(divID).innerHTML = "<a href=\"JavaScript:showMore('"+divID+"');\">Read more&nbsp;>></a>";
}
//-->