﻿/*
URL             /net/scripts/scripts.js
Domain			Shared
Last Reviewed	11/27/09
Purpose			shared common javascript
See file ~/App_Code/scripts.js.notes.txt" for notes and comments
matching the tags in this file:  "See note iiKB-yyyy-mm-ddThh:mm:ss" 
*/

$(document).ready(function() {

    /* See Note iiKB-2009-11-27T04:50:42 */
    var myElem = document.getElementById("divFooterFiller");
    if (myElem != null) {
        $get("divFooterFiller").style.height = $(document).height() - $('#total_wrapper').height() + 15 + 'px';
    }

});

