// $Id: helpers.js 151 2010-12-21 02:07:29Z tboronczyk $

var Helpers = {}

// show or hide the page's loading icon
Helpers.showLoading = function (state) {
    SCT.$("loadingIcon").style.display = (state) ? "" : "none";
}

