<?
/*
**************************** Creation Log *******************************
File Name - main.php
Project Name - Internal Lead Management System
Description - Common File For All modules
Version - Beta
Created by - Ashutosh Upadhyay
Created on - 06 May 2008
***************************************************************************
***************************************************************************
*/
/*
session_start();
if(!$_SESSION["SessionUserID"])
{
header("Location: index.php");
}
*/
require("libs/Smarty.class.php");
$smarty = new smarty();
/*
if($_REQUEST['Messageflag']==1)
{
$smarty->assign("Message","Please Check Login Id and Password.....!");
}
if($_REQUEST['Messageflag']==2)
{
$smarty->assign("Message","You have logged out successfully.....!");
}
if($_REQUEST['Messageflag']==3)
{
$smarty->assign("Message","You must login to enter site.....!");
}
*/
$smarty->display("main.tpl"); //complie and render the output
?>