// JavaScript Document

function oculta_capas(capa_no_ocultar) {
	if (capa_no_ocultar != 'index') {
		document.getElementById('elementos_1').style.visibility = 'hidden';
	}
	if (capa_no_ocultar != 'lineasactuacion') {
		document.getElementById('elementos_2').style.visibility = 'hidden';
	}
	if (capa_no_ocultar != 'zonatrabajo') {
		document.getElementById('elementos_3').style.visibility = 'hidden';
	}
	if (capa_no_ocultar != 'dopress') {
		document.getElementById('elementos_4').style.visibility = 'hidden';
	}
	if (capa_no_ocultar != 'doteca') {
		document.getElementById('elementos_5').style.visibility = 'hidden';
	}
}

function restablece_imagen(capa_no_restablecer) {
	if (capa_no_restablecer != 'index') {
		document.getElementById('elemento_1').style.background="url('/images/queesdocultura02.png') left top no-repeat";
	}
	if (capa_no_restablecer != 'lineasactuacion') {
		document.getElementById('elemento_2').style.background="url('/images/lineasactuacion02.png') left top no-repeat";
	}
	if (capa_no_restablecer != 'zonatrabajo') {
		document.getElementById('elemento_3').style.background="url('/images/zonatrabajo02.png') left top no-repeat";
	}
	if (capa_no_restablecer != 'dopress') {
		document.getElementById('elemento_4').style.background="url('/images/dopress02.png') left top no-repeat";
	}
	if (capa_no_restablecer != 'doteca') {
		document.getElementById('elemento_5').style.background="url('/images/doteca02.png') left top no-repeat";
	}
}

function cambia_estado(menu,estado) {
	if (menu == 'index') {
		document.getElementById('elementos_1').style.visibility = estado;
	}
	if (menu == 'lineasactuacion') {
		document.getElementById('elementos_2').style.visibility = estado;
	} 
	if (menu == 'zonatrabajo') {
		document.getElementById('elementos_3').style.visibility = estado;
	} 
	if (menu == 'dopress') {
		document.getElementById('elementos_4').style.visibility = estado;
	} 
	if (menu == 'doteca') {
		document.getElementById('elementos_5').style.visibility = estado;
	} 
	oculta_capas(menu);
}

function cambia_imagen(menu,imagen) {
	if (menu == 'index') {
		document.getElementById('elemento_1').style.background="url('/images/"+imagen+"') left top no-repeat";
	}
	if (menu == 'lineasactuacion') {
		document.getElementById('elemento_2').style.background="url('/images/"+imagen+"') left top no-repeat";
	} 
	if (menu == 'zonatrabajo') {
		document.getElementById('elemento_3').style.background="url('/images/"+imagen+"') left top no-repeat";
	} 
	if (menu == 'dopress') {
		document.getElementById('elemento_4').style.background="url('/images/"+imagen+"') left top no-repeat";
	} 
	if (menu == 'doteca') {
		document.getElementById('elemento_5').style.background="url('/images/"+imagen+"') left top no-repeat";
	}
	restablece_imagen(menu);
}

function cambiar_color(elemento,color) {
	document.getElementById(elemento).style.color = color;
}

function redireccionar(url) {
	location.href = url;
}

function delay(url) {
	setTimeout("redireccionar('" + url + "');", 500)
}

function compruebaIgualContrasenas(contrasena1,contrasena2) {
	if (contrasena1 != contrasena2) {
		alert("Las contraseñas deben coincidir");
		return false;
	}
}
