var previousToolTip='';
function displayToolTip(msg)
{
if(top!=null)
if(top.ToolFrame!=null)
if(top.ToolFrame.document!=null)
if(top.ToolFrame.document.tool!=null)
if(top.ToolFrame.document.tool.toolDesc!=null)
{
previousToolTip=top.ToolFrame.document.tool.toolDesc.value;
top.ToolFrame.document.tool.toolDesc.value=msg;
}
}
function revertToolTip()
{
if(top!=null)
if(top.ToolFrame!=null)
if(top.ToolFrame.document!=null)
if(top.ToolFrame.document.tool!=null)
if(top.ToolFrame.document.tool.toolDesc!=null)
top.ToolFrame.document.tool.toolDesc.value=previousToolTip;
}
