
function goAway(url) {

	switch(url) {

		case "contacto":
			self.location="contacto.html";
		break;

		case "detalle_gps":
			self.location="gps.html";
		break;

		case "empresa":
			self.location="empresa.html";
		break;

		case "index":
			self.location="index.html";
		break;

		case "listar":
			self.location="listar.html";
		break;

		case "novedades":
			self.location="novedades.html";
		break;

		case "serv_prov":
			self.location="serv_prov.html";
		break;

		case "sucursal":
			self.location="sucursal.html";
		break;

		case "semicama":
			self.location="semicama.html";
		break;

		case "cama_vip":
			self.location="cama_vip.html";
		break;
		
		case "cama_total_vip":
			self.location="cama_total_vip.html";
		break;

		case "platinum":
			self.location="platinum.html";
		break;
		
		case "comprar":
			self.location="comprar.html";
		break;

	}

}


/* combo! ******************************/
function mostrar(div){
	if(document.getElementById(div).style.display=='none') document.getElementById(div).style.display='block';
	else ocultar(div);
}
function ocultar(div){
	divIdioma=div;
	setTimeout(ocultarDelayed,100);
}
function ocultarDelayed(){
	document.getElementById(divIdioma).style.display='none';
}

function seleccionar(valor,origen,destino){
	document.getElementById(origen).value=valor;
	document.getElementById(destino).value=valor;
}
/*****************************************/

