//////////////////////////////////////////////////
//FUNCION HEIGHT TABLA
function nHeight(command) {
	//div tabla
	var divTabla=document.getElementById("esqueleto");
	if(command=="nosotros")
		divTabla.height=700;
	
	if (command=='incubacion')
		divTabla.height=700;
	
	if (command=='productos')
		divTabla.height=1550;
	
	if (command=='garantia')
		divTabla.height=700;
	
	if (command=='embarques')
		divTabla.height=700;
	
	if (command=='preguntas')
		divTabla.height=1500;
	
	if (command=='periodos')
		divTabla.height=830;
	
	if (command=='contacto')
		divTabla.height=700;
}
//
//////////////////////////////////////////////////

//----------------------------------------------//

//////////////////////////////////////////////////
//FUNCION LLAMAR MENU
function LlamaMenu(command) {
	var divTabla=document.getElementById("esqueleto");
	if (command=='nosotros') {
    	divTabla.height=700;
    	parent.Marco.document.location.href='nosotros.php?ver=htm';
	}
	if (command=='incubacion'){
    	divTabla.height=700;
    	parent.Marco.document.location.href='servicios.php?ver=htm';
	}
	if (command=='productos'){
		//divTabla.height=1550;
		parent.Marco.document.location.href='equipos.php?ver=htm';
	}
	if (command=='garantia'){
		divTabla.height=700;
		parent.Marco.document.location.href='serv_garantias.php?ver=htm';
	}
	if (command=='embarques'){
		divTabla.height=700;
		parent.Marco.document.location.href='embarques.php?ver=htm';
	}
	if (command=='preguntas'){
		divTabla.height=1500;
		parent.Marco.document.location.href='preguntas.php?ver=htm';
	}
	if (command=='periodos'){
		divTabla.height=830;
		parent.Marco.document.location.href='periodos.php?ver=htm';
	}
	if (command=='contacto'){
		divTabla.height=700;
		parent.Marco.document.location.href='contacto.php?ver=htm';
	}
	if (command=='cliente'){
		divTabla.height=700;
		parent.Marco.document.location.href='cliente.php?ver=htm';
	}
}
//
//////////////////////////////////////////////////

//----------------------------------------------//

//////////////////////////////////////////////////
//FUNCION LLAMAR MENU INGLES
function LlamaMenu2(command) {
	var divTabla=document.getElementById("esqueleto");
	if (command=='nosotros') {
    	divTabla.height=700;
    	parent.Marco.document.location.href='ing_nosotros.php?ver=htm';
	}
	if (command=='incubacion'){
    	divTabla.height=700;
    	parent.Marco.document.location.href='ing_servicios.php?ver=htm';
	}
	if (command=='productos'){
		//divTabla.height=1550;
		parent.Marco.document.location.href='ing_equipos.php?ver=htm';
	}
	if (command=='garantia'){
		divTabla.height=700;
		parent.Marco.document.location.href='ing_serv_garantias.php?ver=htm';
	}
	if (command=='embarques'){
		divTabla.height=700;
		parent.Marco.document.location.href='ing_embarques.php?ver=htm';
	}
	if (command=='preguntas'){
		divTabla.height=1500;
		parent.Marco.document.location.href='ing_preguntas.php?ver=htm';
	}
	if (command=='periodos'){
		divTabla.height=830;
		parent.Marco.document.location.href='ing_periodos.php?ver=htm';
	}
	if (command=='contacto'){
		divTabla.height=700;
		parent.Marco.document.location.href='ing_contacto.php?ver=htm';
	}
	if (command=='cliente'){
		divTabla.height=700;
		parent.Marco.document.location.href='ing_cliente.php?ver=htm';
	}
}
//
//////////////////////////////////////////////////

//----------------------------------------------//