function showError(errorText) {
	Ext.MessageBox.show({
		title: 'Error',
		msg: errorText,
		buttons: Ext.MessageBox.OK,
		closable: false,
		modal: true,
		icon: Ext.MessageBox.ERROR
	});
}

function showWarning(errorText) {
	Ext.MessageBox.show({
		title: 'Warning',
		msg: errorText,
		buttons: Ext.MessageBox.OK,
		closable: false,
		modal: true,
		icon: Ext.MessageBox.WARNING
	});
}


function showInformation(informationTitle, informationText) {
	Ext.MessageBox.show({
		title: informationTitle,
		msg: informationText,
		buttons: Ext.MessageBox.OK,
		closable: false,
		modal: true,
		icon: Ext.MessageBox.INFO
	});
}

