Ext.onReady(function(){

	artEditorPanel = new Ext.Panel({
        width		: 1000,
        heigth		: 500,
		id			: 'arteditor',
    	autoScroll	: true,
        items		: [{
        		html: '<iframe src="' + siteName + 'context/articleEditor.cfm" width="1000" height="5000" frameborder="false">'
        	}
        ]
    });
   
   	artWin = new Ext.Window({
  	 		id			: 'artWindow',
    		hidden		: false,
    		maximized	: true,
    		width		: 900,
    		height		: 500,
    		draggable	: false,
    		autoScroll	: true,
    		maximizable : true,
      	    closable	: true,
      	    resizable	: true,
    		modal		: true,
    		closeAction	:'hide',
    		items		: [artEditorPanel]
    });
});
