function setPageTitle(timeout)
{
    if (typeof(timeout) == "undefined")
        timeout = 5000;

    try {
        var newtitle = "";
        if (window.parent.frames["main"].document.title);
            newtitle = window.parent.frames["main"].document.title;
        window.parent.document.title = newtitle;
    } catch (err) {
    
    }
    setTimeout("setPageTitle()", 5000);
}
