function faqPage() {
	if (!MyVCFApp.Faq) {
		MyVCFApp.Faq = new MyVCFApp.FaqObj({}) ;
		MyVCFApp.setView(MyVCFApp.Faq, $("#div_main_faq")) ;
	} else {
	}
	MyVCFApp.initPage('div_main_faq', 4) ;
}

MyVCFApp.FaqObj = $.inherit(MyVCFApp.View, {
	scope: this,
	_initView: function() {
		this.idUser = MyVCFApp.Utils.nextId() ;
	},
	_generate: function() {
		var txt = "" ;
		txt += "<div id='div_faq_txt' style=''></div>" ;
		return txt ;
	},
	_onRender: function() {
		$("#div_faq_txt").load('/io.php?action=getFaqText', function() {
			doPlusDinfo() ;
		}) ;
	}
}) ;
