<?php

require_once ("smarty/Smarty.class.php");
require_once (
"common.php");

want_show_source();

$tpl_data = array(
    
"file"        => "list.tpl",

    
"list"        => array(
        
"Support &amp; Help Resources" =>
        
"The quickest way to obtain support is to send an email with a descriptive subject. I will try to contact you back and resolve your problem as soon as possible. For Excalibur Scheduling System support, please see the Excalibur website's support section."
    
)
);


$tpl = new Smarty();
$tpl->assign($tpl_data);

$tpl->display("generic.tpl");

?>