// $Id: helpers.js 141 2010-12-13 00:35:43Z tboronczyk $

var Helpers = {}

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

