<!--
sitio: www.interlimec.com
file: index.php
realizado por: iridizen.com
programador: Ing. Daniel Castillo Torres
Fecha: 16/01/12
-->
<?php
require('libs/smarty/Smarty.class.php');
$smarty = new Smarty;
$sec=$_GET['sec'];
if($sec==""){
$sec="inicio";
}
$leng=$_GET['leng'];
if($leng==""){
$leng="ES";
}
if($sec=="contacto"){
require('libs/getForm.php');
$smarty->assign('formulario',getForm($leng));
}
$smarty->assign('leng',$leng);
$smarty->assign('templates',"templates".$leng);
$smarty->assign('section',$sec);
$smarty->display("templates".$leng."/home.tpl");
?>