Ext.BLANK_IMAGE_URL = 'http://extjspoker.thelostworld.us/js/resources/images/default/s.gif';



Ext.onReady(function(){

	Ext.QuickTips.init();
 	
 	var about_btn = Ext.get("about-btn");
 	var about_win;
 	
 	var about_btn_2 = Ext.get("about-btn-2");
 	
 	about_btn.on("click", function() {
		if (!about_win) {
		 	about_win = new Ext.Window({
			  	layout: 'fit',
				width: 500,
				height: 250,
				closeAction: 'hide',
				title: 'About ExtJS Poker',
				contentEl: 'gnu',
				modal: true,
				resizable: false
			});
		}
		about_win.show();
	});
	
	about_btn_2.on("click", function() {
		if (!about_win) {
			about_win = new Ext.Window({
			  	layout: 'fit',
				width: 500,
				height: 250,
				closeAction: 'hide',
				title: 'About ExtJS Poker',
				contentEl: 'gnu',
				modal: true,
				resizable: false
			});
		}
		about_win.show()
	});
	
});