// JavaScript Document

function cabecera() {
	html = '<div id="cabecera" style="background:url(../imatges/cabecera-' + idioma + '.jpg) no-repeat left;"><a href="index.html" id="cabecera"></a></div>';
//	html = '<a href="index.html"><img src="../imatges/cabecera.jpg"></a>';	

	document.write(html);
}

function cabeceraAdmin() {
	html = '<div id="cabecera" style="background:url(../imatges/cabecera-' + idioma + '.jpg) no-repeat #66CCD1"><a href="index.html" id="cabecera"></a></div>';
//	html = '<a href="index.html"><img src="../imatges/cabecera.jpg"></a>';	

	document.write(html);
}


function menu() {

	html = '<div id="menu">';

	html += '<div id="idiomas"><a href="../ca/index.html">Català</a> / <a href="../es/index.html">Castellano</a></div>';

	switch (idioma) {
		case "ca":	html += '<a href="index.html" title="Anar a inici">Inici</a><br>';
					html += '<a href="recorregut.html" title="Veure recorregut">Recorregut</a><br>';
					html += '<a href="activitats.html" title="Veure activitats">Activitats</a><br>';
					html += '<a href="informacio.html" title="Recomanacions tècniques">Consells</a><br>';
					html += '<a href="inscripcions.php" title="Inscriu-te">Inscripcions</a><br>';
					html += '<a href="contacta.php" title="Contacta amb nosaltres">Contacte</a><br>';
					break;

		default:	html += '<a href="index.html" title="Ir a inicio">Inicio</a><br>';
					html += '<a href="recorregut.html" title="Ver recorrido">Recorrido</a><br>';
					html += '<a href="activitats.html" title="Ver actividades">Actividades</a><br>';
					html += '<a href="informacio.html" title="Recomendaciones técnicas">Consejos</a><br>';
					html += '<a href="inscripcions.php" title="Inscríbe-te">Inscripciones</a><br>';
					html += '<a href="contacta.php" title="Contacta con nosotros">Contacto</a><br>';
					break;					
	}


	html += '</div>';

	document.write(html);
}


function menuTemporal() {

	html = '<div id="menu">';

	html += '<div id="idiomas"><a href="../ca/index.html">Català</a> / <a href="../es/index.html">Castellano</a></div>';

	switch (idioma) {
		case "ca":	html += '<a href="#" title="Anar a inici">Inici</a><br>';
					html += '<a href="#" title="Veure recorregut">Recorregut</a><br>';
					html += '<a href="#" title="Recomanacions tècniques">Consells</a><br>';
					html += '<a href="#" title="Inscriu-te">Inscripcions</a><br>';
//					html += '<a href="#" title="Contacta amb nosaltres">Contacte</a><br>';
					break;

		default:	html += '<a href="#" title="Ir a inicio">Inicio</a><br>';
					html += '<a href="#" title="Ver recorrido">Recorrido</a><br>';
					html += '<a href="#" title="Recomendaciones técnicas">Consejos</a><br>';
					html += '<a href="#" title="Inscríbe-te">Inscripciones</a><br>';
//					html += '<a href="#" title="Contacta con nosotros">Contacta</a><br>';
					break;					
	}



	html += '</div>';

	document.write(html);
}


function piePagina() {
/*
	html = '<div id="piePagina">';
	html += '<div id="fotoPie" style="background:url(../imatges/patrocinadores-' + idioma + '.png) no-repeat bottom;">';

	html += '<a href="http://www.lechepascual.es/c02_var.aspx?ID=161010" id="bezoya" title="Agua Mineral Natural Bezoya" target="_blank"></a>';
	html += '<a href="http://www.lacaixa.es" id="lacaixa" title="La Caixa" target="_blank"></a>';
	html += '<a href="http://www.lavanguardia.es" id="vanguardia" title="La Vanguardia" target="_blank"></a>';

	html += '</div>';
	html += '</div>';
*/

//	html = '<div id="piePagina">';
	html = '<div id="fotoPie">';
	html += '<table border=0><tr>';
	html += '<td width="25%"><img src="../imatges/patrocinan-' + idioma + '.png"></td>';
	html += '<td width="25%"><a href="http://www.lechepascual.es/c02_var.aspx?ID=161010" title="Agua Mineral Natural Bezoya" target="_blank"><img src="../imatges/bezoya.png"></a></td>';
	html += '<td width="25%"><a href="http://www.lacaixa.es" title="La Caixa" target="_blank"><img src="../imatges/caixa.png"></a></td>';
	html += '<td width="25%"><a href="http://www.lavanguardia.es" title="La Vanguardia" target="_blank"><img src="../imatges/vanguardia.png"></a></td>';
	html += '</tr></table>';
/*	html += '<a href="http://www.lechepascual.es/c02_var.aspx?ID=161010" id="bezoya" title="Agua Mineral Natural Bezoya" target="_blank"></a>';
	html += '<a href="http://www.lacaixa.es" id="lacaixa" title="La Caixa" target="_blank"></a>';
	html += '<a href="http://www.lavanguardia.es" id="vanguardia" title="La Vanguardia" target="_blank"></a>';			*/
	html += '</div>';
//	html += '</div>';


	document.write(html);
}


// VALIDACIÓ DE FORMULARIS
function errorDesc(tiperr,campo,campo2) {
  switch (tiperr)
   {
     case 0: document.formulario.elements[campo].style.backgroundColor = "#FFFFFF";
	 		 if (campo2)
		 		 document.formulario.elements[campo2].style.backgroundColor = "#FFFFFF";
			 break;		 
     case 1: 
	 		 window.alert("Campo obligatorio");
			 document.formulario.elements[campo].style.backgroundColor = "#FF8080";
			 document.formulario.elements[campo].focus();
			 break;		 
     case 2: window.alert("Campo numérico");
	 		 document.formulario.elements[campo].style.backgroundColor = "#FF8080";
			 document.formulario.elements[campo].focus();
			 break;		 
     case 3: window.alert("Tienes que informar uno de los dos campos.");
	 		 document.formulario.elements[campo].style.backgroundColor = "#FF8080";
			 document.formulario.elements[campo].focus();
	 		 document.formulario.elements[campo2].style.backgroundColor = "#FF8080";
			 break;		 
	 default:
	}
}



function validarFormulario(id) {
	switch (id) {
		case "inscripcion":	if (document.formulario.nombre.value == "") {
								errorDesc(1,"nombre");
								return false;
							}
							errorDesc(0,"nombre");

							if (document.formulario.apellidos.value == "") {
								errorDesc(1,"apellidos");
								return false;
							}
							errorDesc(0,"apellidos");
													
							if (document.formulario.dni.value == "") {
								errorDesc(1,"dni");
								return false;
							}
							errorDesc(0,"dni");
													
/*							if (document.formulario.nacimiento.value == "") {
								errorDesc(1,"nacimiento");
								return false;
							}
							errorDesc(0,"nacimiento");
*/
							if (document.formulario.movil.value == "") {
								errorDesc(1,"movil");
								return false;
							}
							errorDesc(0,"movil");
													
							break;


		case "consulta":	if (document.formulario.nombre.value == "") {
								errorDesc(1,"nombre");
								return false;
							}
							errorDesc(0,"nombre");

							if (document.formulario.telefono.value == "" && document.formulario.email.value == "") {
								errorDesc(3,"telefono","email");
								return false;
							}
							errorDesc(0,"telefono","email");
													
							if (document.formulario.consulta.value == "") {
								errorDesc(1,"consulta");
								return false;
							}
							errorDesc(0,"consulta");
													
							break;

		default:
	}

	return true;

}



function remarca(fila,opcion) {
	switch (opcion)
	  {
		case 1:		fila.style.backgroundColor = "#66CCD1";
					break;
		default:	fila.style.backgroundColor = "white";
					break;
	  }
}

