<!--
var maxToolTipWidth = 300;
iframeObj = null;

function ShowToolTip(text, width, linkobject)
{
/*
	if(MSIE && iframeObj == null)
	{
		iframeObj = document.createElement('IFRAME');
        iframeObj.id = 'FixMSIE';
		iframeObj.style.position = 'absolute';
        iframeObj.style.display = 'none';
        iframeObj.style.visibility = 'hidden'; 
		iframeObj.border = '0px';
        iframeObj.src = 'about:blank';
		iframeObj.style.border = '0px';
		document.body.appendChild(iframeObj);
	}
*/
    
    if(!document.getElementById('Tooltip'))
	{
		var tooltipDiv = document.createElement('DIV');
        tooltipDiv.id = 'Tooltip';
		tooltipDiv.className='tooltip';  
        document.body.appendChild(tooltipDiv); 
	}
	else
	{
		var tooltipDiv = document.getElementById('Tooltip');
	}
    
    tooltipDiv.style.padding = '5px'; 
    writit(text, 'Tooltip');
    x = findPosX(linkobject);
    y = findPosY(linkobject);
    x += 15;
    y += 20; 
    moveXY('Tooltip', x, y); 
    
     
    width = parseInt(width);
    if (width)
    {
        tooltipDiv.style.width = width + 'px';
    }
    else
    {
        divwidth = getElementWidth('Tooltip').offsetWidth;
        if (divwidth > maxToolTipWidth)
        {
            tooltipDiv.style.width = maxToolTipWidth + 'px'; 
        }
    }
    
    show( 'Tooltip' );
    
    if(MSIE)
	{
        resizeFixMSIE('FixMSIE', 'Tooltip');
    }  
}

function HideToolTop()
{   
    hideFixMSIE();
    hide( 'Tooltip' );
}


function show( id ) 
{
    var elem = document.getElementById( id );
    elem.style.display = "block";
}

function hide( id ) 
{
    var elem = document.getElementById( id );
    if (elem.style.display=="none")
    {
        return;
    }
    else
    {
        elem.style.display="none";
    }
}
// -->