// v0.7.11.30.1400
// JavaScript Document

/**
 * Generates the loading text in status bar
 */

function loadingMsg()
{
	this.showtime = 8000;

	this.showLoading = function()
	{
		xajax.$('Loading').style.display = 'block';
	}

	this.hideLoading = function()
	{
		xajax.$('Loading').style.display = 'none';
	}

}

var lM = new loadingMsg();

xajax.loadingFunction = function()
{
	lM.showLoading();
}

xajax.doneProcessFunction = function()
{
	setTimeout("lM.hideLoading()", lM.showtime);
}
