﻿/*
 * Ext JS Library 2.0.2
 * Copyright(c) 2006-2008, Ext JS, LLC.
 * licensing@extjs.com
 *
 * http://extjs.com/license
 */
Ext.MessageBox = Ext.apply(Ext.MessageBox, {
	error: function (title, msg, fn, scope) {this.show({
		title: title,
		msg: msg,
		fn: fn,
		scope: scope,
		buttons:this.OK,
		icon: this.ERROR
	})}		
});
Ext.TabsButton = Ext.extend(Ext.Button, {
	ctCls: 'x-btn-over',
	style: 'margin-right:5px'
});

Ext.QuickTips.init();
Ext.form.Field.prototype.msgTarget = 'side';
