<%//////////// goodbye.php //////////////////////////
include ("class.FastTemplate.php");
$tpl = new FastTemplate(".");
$tpl->define(array(bye_message => "bye_message.tpl",
main => "main.tpl"));
$tpl->assign(array(BYE_MESSAGE => "Thank you and
$tpl->parse (BODY, "bye_message");
$tpl->parse (MAIN, "main");
$tpl->FastPrint();
exit;
%>