function callAllUserStat()
{
    try
    {
        window.frames['IMheaderFrame'].checkUsers();
    } catch(e)
    {
        setTimeout("callAllUserStat();",200);
    }
}


function getUserStat(userId)
{
    try
    {
        window.frames['IMheaderFrame'].isUserOnline(userId);
    } catch(e)
    {
        setTimeout("getUserStat("+userId+");",200);
    }
}