﻿//Javascript needed to have link inside tooltip

function showTooltip(div){
    var d = document.getElementById(div).style;
    d.display = 'block';
    d.position = 'absolute';
    d.width = '482px';
    d.height = '128px';
    d.top = '-125px';
    d.left = '-10px';
    d.textDecoration = 'none';
    d.color = '#FEFEFE';
    d.font = 'normal 11px Verdana';
    d.backgroundImage = 'url("/Images/Com/tooltip.png")';
    d.backgroundRepeat = 'no-repeat';
    d.backgroundPosition = '10px 100%';
    d.padding = '0 0 0 10px';
}

function hideTooltip(div){
   document.getElementById(div).style.display = 'none';
}
