<!--
  function showInfo(theDiv, theImg) {
    if (theDiv.style.display) {
      if (theDiv.style.display = 'none') {
      	theDiv.style.display = '';
      	theImg.style.display = ''; }
      }
    else {
      theDiv.style.display = 'none';
      theImg.style.display = 'none';
    }
  }
//-->