// JavaScript Document
<!--
function PNG_loader() {
   for(var i=0; i<document.images.length; i++) {
      var img = document.images[i];
      var imgName = img.src.toUpperCase();
      if (imgName.substring(imgName.length-3, imgName.length) == "PNG") {
         var imgID = (img.id) ? "id='" + img.id + "' " : "";
         var imgClass = (img.className) ? "class='" + img.className + "' " : "";
         var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' ";
         var imgStyle = "display:inline-block;" + img.style.cssText;
         if (img.align == "left") imgStyle += "float:left;";
         if (img.align == "right") imgStyle += "float:right;";
         if (img.parentElement.href) imgStyle += "cursor:hand;";
         var strNewHTML = "<span " + imgID + imgClass + imgTitle
            + " style=\"" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";"
            + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
            + "(src=\'" + img.src + "\', sizingMethod='scale');\"><\/span>";
         img.outerHTML = strNewHTML;
         i--;
      }
   }
}
window.attachEvent("onload", PNG_loader);

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function validar_formu(){
		var ok=0;
		if (ok == 0 && document.formu.dni.value==""){
			alert("LO SENTIMOS LAS INSCRIPCIONES YA ESTAN CERRADAS");
			ok=1;
			document.formu.dni.focus();
		}
		if (ok == 0 && document.formu.nombre.value==""){
			alert("Debe rellenar el campo nombre, por favor");
			ok=1;
			document.formu.nombre.focus();
		}
		if (ok == 0 && document.formu.apellido1.value==""){
			alert("Debe rellenar el campo apellidos, por favor");
			ok=1;
			document.formu.apellido1.focus();
		}		
		if (ok == 0 && !document.formu.sexo[0].checked && !document.formu.sexo[1].checked){
			alert("Debe indicar su sexo, por favor");
			ok=1;
			document.formu.apellido1.focus();
		}
		if (ok == 0 && document.formu.dia.value==""){
			alert("Debe rellenar el campo dia de nacimiento, por favor");
			ok=1;
			document.formu.dia.focus();
		}
		if (ok == 0 && document.formu.mes.value==""){
			alert("Debe rellenar el campo mes de nacimiento, por favor");
			ok=1;
			document.formu.mes.focus();
		}
		if (ok == 0 && document.formu.ano.value==""){
			alert("Debe rellenar el campo año de nacimiento, por favor");
			ok=1;
			document.formu.ano.focus();
		}
		if (ok == 0 && !document.formu.federado[0].checked && !document.formu.federado[1].checked){
			alert("Debe indicar si está o no federado, por favor");
			ok=1;
			document.formu.apellido1.focus();
		}
		if (ok == 0)
			document.formu.submit();	
	}

//-->
function Abrir_ventana (pagina) {
var opciones="toolbar=no, location=no, status=no, menubar=no, scrollbars=no, width=1024, height=650";
window.open(pagina,"ventana",opciones);
}