To use the existing FAQ, I believe youn need to edit the $lng.txt_faq in the languages section OR you could just modify the FAQ_HTML.tpl file from this:
Code:
{* $Id: FAQ_HTML.tpl,v 1.7 2002/05/21 10:04:09 lucky Exp $ *}
{capture name=dialog}
{$lng.txt_faq}
{/capture}
{include file="dialog.tpl" title=$lng.lbl_faq content=$smarty.capture.dialog extra="width=100%"}
To this:
Code:
{* $Id: FAQ_HTML.tpl,v 1.7 2002/05/21 10:04:09 lucky Exp $ *}
{capture name=dialog}
YOUR FAQ CONTENT HERE
{/capture}
{include file="dialog.tpl" title=$lng.lbl_faq content=$smarty.capture.dialog extra="width=100%"}
hope this helps