
// === AUTOS ===
function A_LigaAutos(strClaveGen) {
	switch(strClaveGen){
		case "JOUR11": strFolder = "journey-se-crew-2011"; break;
		case "JOEX11": strFolder = "journey-se-express-2011"; break;
		case "JOSE12": strFolder = "journey-se-2012"; break;
		case "DURA12": strFolder = "durango-2012"; break;
	}
	var strLiga = strRutaBase + "/autos-nuevos/"+ strFolder + "/inicio.asp";
	//alert("auto = "+strClaveGen+"   |   liga = "+strLiga);
	location.href = strLiga;
}


function A_LigasAutosHome(strClaveGen, strTipo){
	switch (strClaveGen){
		case "JOUR11": strFolder = "journey-se-crew-2011"; break;
		case "JOEX11": strFolder = "journey-se-express-2011"; break;
		case "JOSE12": strFolder = "journey-se-2012"; break;
		case "DURA12": strFolder = "durango-2012"; break;
	}
	switch(strTipo){
		case "FICHA": strLiga = strRutaBase + "/autos-nuevos/"+ strFolder + "/ficha-tecnica.asp"; location.href = strLiga; break;
		case "COLOR": strLiga = strRutaBase + "/autos-nuevos/"+ strFolder + "/colores.asp"; location.href = strLiga;  break;
		case "VISTA": strLiga = strRutaBase + "/autos-nuevos/"+ strFolder + "/vista-360.asp"; location.href = strLiga;  break;
	}
}

// === LIGAS GENERALES ===

function A_ProcesaClave(strClave){
	//alert(strRutaBase);
	switch(strClave){
		case "HOMEPAGE":
			strLiga = strRutaBase;
			location.href = strLiga;
		break;
		case "CONCESIONARIOS":
			strLiga = strRutaBase + "/concesionarios/";
			location.href = strLiga;
		break;
		case "EVENTOS":
			strLiga = strRutaBase + "/eventos/";
			location.href = strLiga;
		break;
		case "COMUNICADOS":
			strLiga = strRutaBase + "/comunicados/journey.asp";
			location.href = strLiga;
		break;
		case "VIDEO-HOME":
			showLayer('contFlhVideos');
		break;
		case "DURANGO":
			A_LigaAutos('DURA12');
		break;
		case "WALLPAPERS":
			strLiga = strRutaBase + "/Wallpapers/";
			location.href = strLiga;
		break;

		case "CONTACTO":
			strLiga = strRutaBase + "/contacto/";
			location.href = strLiga;
		break;
		case "ACCESORIOS":
			strLiga = strRutaBase + "/accesorios/";
			location.href = strLiga;
		break;
		case "TWITTER":
			strLiga = "http://twitter.com/ManadaJeep";
			A_AbreVentana(strLiga);
		break;
		case "FACEBOOK":
			strLiga = "http://www.facebook.com/soypartedelamanadajeep";
			A_AbreVentana(strLiga);
		break;
		case "ACT_DATOS":
			strLiga = strRutaBase + "/actualizar-datos/";
			location.href = strLiga;
		break;
		case "CORP_CH":
			strLiga = "http://www.chrysler.com.co";
			A_AbreVentana(strLiga);
		break;
		case "CORP_DG":
			strLiga = "http://www.dodge.com.co";
			A_AbreVentana(strLiga);
		break;
		case "CORP_JP":
			strLiga = "http://www.jeep.com.co";
			A_AbreVentana(strLiga);
		break;
		case "CORP_RM":
			strLiga = "http://www.ram.com.co";
			A_AbreVentana(strLiga);
		break;

	}
}

function A_TerminaVideo(){ hideLayer('contFlhVideos');}

