function bodyClick(url, toggleHeaderOn) {
    // $('body').css('cursor','pointer');
    // $('#aj_container').css('cursor','default');
    // Extends clickable area of BODY-tag not only to initial viewport render
    // However, #aj_container gets needs to inherit min-height and height of BODY-tag
    $('body').css({ 'min-height':'100%', 'height':'auto', 'cursor':'pointer' });
    $('#aj_container').css({ 'min-height':'100%', 'height':'auto', 'cursor':'default' });
    $('#header').css('cursor','pointer');
    $('#header div.hdbox').css('cursor','default');
    $('body').click(function(e) {
        var obj = (e.target ? e.target : e.srcElement);
        if (obj.tagName != 'BODY') return true;
        window.open(url, "_blank");
        //alert('body click recorded')
        return false;
    });
    if (toggleHeaderOn == "1") {
        $('#header').click(function(e) {
            var obj = (e.target ? e.target : e.srcElement);
            if (obj.id != 'header') return true;
            window.open(url, "_blank");
            return false;
        });
    }
}
