Ext.onReady(function(){
	var domNode = Ext.get('companyprofile');
	if (domNode) {
		//Create form panel*****************************************************************************
	    var contactusPanel = new Ext.Panel({
	        bodyStyle:'',
	        title:'<span class="panel-title">Company Profile</span>',
	        autoHeight: true,
	        autoScroll: true,
	        frame:true,
        	autoLoad: {
				url: '/company_profile.html',
				scripts: true
			}
	    });
		
	    contactusPanel.render('companyprofile');
	}
});

