if ( typeof YAHOO == "undefined" ) { // Safety net...should already be defined by EKAjaxBlock::EKGetAjaxScriptIncludes() in ajaxblock.php. -ELK
    document.write('<' + 'script src="/subsys/yui/build/yahoo/yahoo-min.js"' + '>' + '</' + 'script' + '>\n');
    document.write('<' + 'script src="/subsys/yui/build/event/event-min.js"' + '>' + '</' + 'script' + '>\n');
    document.write('<' + 'script src="/subsys/yui/build/connection/connection-min.js"' + '>' + '</' + 'script' + '>\n');
}


/***************************************************
Modify the function load_divs() with any AJAX blocks
****************************************************/
    // load_divs() is called by the body_on_load() function in simple_yui_ajax.js. -ELK 20081218
    function EKLoadDivs() {
      // No default divs to prepopulate
    }

    function show_hide_login()
    {
      dlgn=document.getElementById('login_div');
      if ( dlgn.style.display == 'none' )
      {
        dlgn.style.display='inline';
      }
      else
      {
        dlgn.style.display='none';
      }
    }
    
//window.addEventListener("load",body_on_load,false); // Doesn't work with IE! -ELK

