/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
var eudlr_Tab1General = new Ext.Panel(
{
    bodyStyle : 'border : none;',
    height : 400,
    width  : 600,
    layout : 'border',
    items : [
     {
        region : 'center',
        frame : false,
        border : false,
        autoHeight : false,
        height : 270,
        margins: '0 0 0 0',
        bodyStyle :  "padding : 4px;",
        html : eudlr_msg_Antragsassistent
    },

    {
        region : 'south',
        frame : false,
        border : false,
        height : 100,
        items : [
            new Ext.Panel( {
                buttonAlign : 'center',
                border : false,
                 
                buttons : [
                    new Ext.Button( {
                        text :'Neuer Antrag',
                        labelStyle : 'font-weight : bold',
                        cls : 'boldButton',
                        height : 30,
                        width : 150,
                        handler : function() {
                            eudlr_OpenAssistent();
                        }
                    })
                ]
            })

        ]

    }]
})

