/* ===== START Class: progressPanel ===== */
function progressDialog (elem) {
	this.node 		= elem;
	var pdself 		= this;
	
	this.setLabel = function (l) {
		$('progressWindowText').innerHTML = l;
	}
	
	this.show = function () {
		pdself.node.style.display = 'block';
	}
	
	this.hide = function () {
		pdself.node.style.display = 'none';
	}
}
/* ===== END Class: progressPanel ======= */

function initialiseProgressDialog () {
	progressDialog = new progressDialog($('progressPanel'));
}

addOnLoad(initialiseProgressDialog);
