﻿
var currentTooltip = '';
function showTooltip(theTip) {
  if(currentTooltip != theTip && currentTooltip != '') {
    hideTooltip();
   }
		
   currentTooltip = theTip;
   document.getElementById(theTip).style.display = 'block';
}


function hideTooltip() {
  document.getElementById(currentTooltip).style.display = 'none';
}






