<!--
function dropInfo(blockid,otherid,image,otherimage) {
    if (document.getElementById(blockid).style.display=='block'){
      document.getElementById(blockid).style.display='none';
    } else {
      document.getElementById(blockid).style.display='block';
      if (otherid!='none'){
        if (document.getElementById(otherid).style.display=='block') {
          document.getElementById(otherid).style.display='none';
        }
      }
    }
  }
//-->
