/**
 * @author M�ller Michael
 */




DemomovieUi = Ext.extend(Ext.Window, {
    title: 'kmu-visitenkarte Demonstrationsfilm',
    html: '<object width="560" height="445"><param name="movie" value="http://www.youtube.com/v/Suwk-F5N4Lk&hl=de_DE&fs=1&rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/Suwk-F5N4Lk&hl=de_DE&fs=1&rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="560" height="445"></embed></object>',
    maskDisabled: false,
    autoHeight: true,
    width:574,
    id: 'id_demomovie',
    initComponent: function() {
        DemomovieUi.superclass.initComponent.call(this);
    }
});

Demomovie = Ext.extend(DemomovieUi, {
    initComponent: function() {
        Demomovie.superclass.initComponent.call(this);
    }
});


function show_demomovie() {
    var demomovie = new Demomovie({
        renderTo: Ext.getBody()
    });
    demomovie.show();
}


