<?php
//-----------------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------------
// brain  : Cristian Fernandez O.
// e-mail : cristian.fernandez@factobyte.cl
//-----------------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------------
// requiere sesion : No
   //session_start();
//-----------------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------------
// ruta a la raiz del sistema:
   $ruta_raiz = "";
//-----------------------------------------------------------------------------------------------
//-----------------------------------------------------------------------------------------------
// asociacion de archivos externos a la pagina:
   include("soul/inc_soul.php");
//***********************************************************************************************
//***********************************************************************************************

tagHead($ruta_raiz, "On-line");
tagBody();

if (consultaModoMantencion() == 1){
	//sitio web en modo mantencion
	muestraMensajeModoMantencion();
}
else {
	//cabecera del sitio
	generaCabeceraPagina($ruta_raiz);
	?>

		<div id="contenidos-banner"><h2>&iexcl; VIAJA JUNTO A NOSOTROS !</h2></div>

		<div id="contenidos">
			<div id="contenidos-content">
				
				<h1>SERVICIOS ON-LINE</h1>
				<hr class="linea_titulo">

				<?
				//------------------------------------------
				// se procesan datos recibidos
				//------------------------------------------
				$req_servicio = trim($_REQUEST["service"]);

				if ($req_servicio == "hotel"){
					?>
					<iframe src="https://www.e-agencias.cl/i-travel/home/hotels" width="100%" height="760px" frameborder="0"></iframe>
					<?
				}
				elseif ($req_servicio == "vuelo"){
					?>
					<iframe src="https://www.e-agencias.cl/i-travel/home/flights" width="100%" height="700px" frameborder="0"></iframe>
					<?
				}
				elseif ($req_servicio == "paquete"){
					?>
					<iframe src="https://www.e-agencias.cl/i-travel/home/packages" width="100%" height="800px" frameborder="0"></iframe>
					<?
				}
				else {
					//faltan datos requeridos
					?>
					<br>
					<h6>&iexcl; FALTAN DATOS REQUERIDOS PARA MOSTRAR SERVICIOS !</h6>
					<p class="contenidos-texto-centrado">Por favor, vuelve a intentarlo.</p>
					<br>
					<button type="button" class="boton_principal" onclick="window.location='index.php'">IR A INICIO</button>
					<?
				}
				?>

				<div id="anula-float"></div>
			</div>
		</div>

<?
	//pie del sitio
	generaPiePagina($ruta_raiz);
}

tagFoot();
?>