﻿/**
* Copyright (c) 2011 eSolutionsGroup
* All rights reserved.
* 
* Author: Timothy Grant Vogelsang <tvogelsang@esolutionsgroup.ca>
*/

Ext.Msg.confirm = function(title, msg, fn, scope) {
	this.show( {
		closable: false,
		title: title,
		msg: msg,
		buttons: this.YESNO,
		fn: fn,
		scope: scope,
		icon: this.QUESTION,
		minWidth: this.minWidth
	} );

	return this;
}
