﻿function BlogLoad() {

    //Window Focus - Not Focus set events
    PageActiveElement = document.activeElement;
    if (/*@cc_on!@*/false) // check for Internet Explorer
    {
        document.onfocusout = function() { onWindowBlur(); }
        document.onfocusin = function() { onWindowFocus(); }

    }
    else {
        window.onfocus = onWindowFocus;
        window.onblur = onWindowBlur;


    }

    // Init Browser Type
    BrowserDetectInit(); 

    //set the focus to the first form field
    SetToFirstControl();

    //set the Focus of the document
    SetWindowFocus()
    
    setTimeout("StopAllBobActions()", 3*60000); //Stop all billy's actions after 3 minutes



}


//Overide the original Billy's function

function SetFooter() {

    return;
}