﻿
//////////////////////////////////////////////////////////
// JScript File
function showToolTip(tmpId) 
{
    var ele = document.getElementById(tmpId);
    if(ele)
    {
     //------- If div has value then this will display else not
        var innerDiv = ele.getElementsByTagName("div")[0];
        var mainStr = "";       		    
        if(innerDiv)
        {            
             if(document.all)
	            mainStr = innerDiv.innerText;
            else
	            mainStr = innerDiv.textContent;	            
	        mainStr = trim(mainStr);
            if(mainStr != "")    
                display('block',tmpId);
        }
        else
        {
             display('block',tmpId);
        }
    }   
}
function display(val,tmpId)
{        
    var ele = document.getElementById(tmpId);
    if (ele && ele.style) ele.style.display = val;                
}
function hideIfNotIn(e, tgt)
{       
   display('none',tgt);
}
               