﻿
//===================================================================================
function ShowPrompt(title, message, animateCtl, onOk, onCancel)
{
	Ext.Msg.show(
	{
		title: title,
		msg: message,
		buttons: Ext.Msg.OKCANCEL,
		fn: function (btn)
		{
			if (btn == 'ok' && onOk != null)
				onOk();
			else if (onCancel != null)
				onCancel();
		},
		animEl: animateCtl,
		icon: Ext.MessageBox.QUESTION
	});
}

//===================================================================================
function LoadingMask()
{
	new Ext.LoadMask(Ext.getBody(), { msg: '  Please wait...  ' }).show();
}


