ArticleDetailWin = function(articleId) {

	ArticleDetailWin.superclass.constructor.call(this, {
				title : '信息浏览 -- 海巍科技造价管理平台',
				width : 700,
				height : 550,
				frame : true,
				layout : 'fit',
				bodyStyle : "padding:2px; background-color:#EFFAFF;",
				items : {
					xtype : 'panel',
					autoScroll : true,
					bodyStyle : "background-color:#F2F6FA;",
					autoLoad : {
						url : 'getArticleDetail.do?articleId=' + articleId,
						nocache : true,
						scripts : true
					}
				},
				bbar : [{
							xtype : 'tbfill'
						}, '-', {
							text : '确定',
							iconCls : 'cx-close-2',
							scope : this,
							handler : function() {
								this.close();
							}
						}]
			});
};

Ext.extend(ArticleDetailWin, Ext.Window, {});
