function debug(content){	
	var	win = new Ext.Window({
			title: 'Debug',
	        layout: 'fit',
	        width: 500,
	        height: 300,
	        maximizable: true,
	        closeAction: 'hide',
	        plain: false,
	        html: content,
			bbar:[]
	    });	
	win.show(this);
	
	win.getBottomToolbar().addFill();
	win.getBottomToolbar().add({
			                		xtype:'button',
							        text: 'Schlie&szlig;en',
						            handler:  function(){
										win.close();    
									}
			        			});
}

