
function initApp(base_url, aLabel){

	this.base_url = base_url;
	
	this.aLabel = aLabel;
	
	this.waiting_label = this.aLabel["WAITING_LABEL"];
	
	
};

function goToLink(path){
	
	//$(document).ready(function() {

		$.blockUI('<div id="messageBox">'+config.waiting_label+'</div>');

		if(path == 'history'){

			history.go(-1);

		}else{

			location.href = config.base_url+path;

		}

	//});

}