framework extjs 4.2.0

Basic setup for extjs 4.2.0

HTML

<link rel="stylesheet" href="http://cdn.sencha.io/ext-4.2.0-gpl/resources/css/ext-all.css">
<script src="http://cdn.sencha.io/ext-4.2.0-gpl/ext-all.js"></script>

JavaScript

var oWindow = new Ext.Window({
	    title : "iframe",
	    width : 300,
	    height: 300,
	    layout : 'fit',
        items   : [{
            xtype: 'component',
    autoEl: {
        tag: 'iframe',
        src: 'http://ws54.ultralog.yob/driver/batch.drv.php?idsession=88f09f8d6f4d73fab8e81d52c14ce71a&socn=0&univ=sales&onglets=batch_view_batch_user&idubtempbatch=72'
    }
        }]
	});
	oWindow.show();