function msglpAddJob(code, timeOut)
{
if ( code != null && code != "")
{
    setTimeout(code, timeOut);
}
}


