<?php
define("INSTALL_DIR",dirname(__FILE__));
if (is_file(INSTALL_DIR."/include/conf.inc.php"))
{
include (INSTALL_DIR."/include/conf.inc.php");
}
else
{
Header("Location: install.php?fu=1");
}
set_template($sugaurl,"",dirname(__FILE__),$serverurl);
$template->assign_vars(array('page_title'=> 'SUGA - Welcome',));
$template->pparse('xhtmlhead');
$template->pparse('sugaindex');
?>