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

