 /*
 * Imagimap Simple Viewer
 * 
 * fabien.goblet [at] gmail.com , arnaud.sig [at] gmail.com
 * http://www.geotribu.net
 * 
 * Last modified :	01/11/2010
 */

	var credits = new Ext.Window({
		title: 'About Imagimap',
		modal: true,
		iconCls: 'imagimap',
		layout: 'fit',
		width: 400,
		height: 400,
		closeAction:'hide',
		plain: true,
		html: "<iframe style='border: none; height: 100%; width: 100%' src='about.html'></iframe>"
	});

	var imagimapCreditButton = new Ext.Button({
		iconCls: 'imagimap',
		tooltip: 'About Imagimap',
		text: 'Credits',
		handler: function(){
			credits.show();
		}
	});

