﻿try
{
    var oWaitMsg;

    if ( document.getElementById )
    {
        oWaitMsg = document.getElementById( "waitmsg" );
        if ( oWaitMsg )
            oWaitMsg.parentNode.removeChild( oWaitMsg );
    }
    else if ( document.all )
    {
        oWaitMsg = document.all["waitmsg"];
        if ( oWaitMsg )
            oWaitMsg.parentNode.removeChild( oWaitMsg );
    }
}
catch ( e )
{
}
