function DelayRedirect(newPath)
{
    var newUrl = window.location.protocol + "//" + window.location.hostname;
    if(window.location.port != 80)
    {
        newUrl += ":" + window.location.port;
    }
    newUrl += newPath;
    setTimeout("window.location='"+newUrl+"'",5000);
    return true;
}

