<?php

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

want_show_source();

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

    
"list"        => array(
        
"Contact"
            
=> "For questions, requests for price quotes, suggestions, and comments, please contact <a href='mailto:jason@jones-systems.com'>Jason</a>."
    
)
);


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

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

?>