// JavaScript Document

function accionar_menu(value,opc){
 switch(value){
	 case 1: //Lactancia
	 	 document.getElementById("sub_leches").style.display="none";
		 break;
     case 2: //lechesInfantiles.asp
	     document.getElementById("sub_leches").style.display="block";
		 document.getElementById("nidina").className="active";
		 document.getElementById("nativa").className="active_nativa";
		 break;
     case 3: //home_nidina.asp
	     document.getElementById("sub_leches").style.display="block";
		 document.getElementById("sub_nidina").style.display="block";
		 document.getElementById("nativa").className="active_nativa";
		 break;
     case 4: //home_nativa.asp
	 	 document.getElementById("sub_leches").style.display="block";
	     document.getElementById("sub_nativa").style.display="block";
		 document.getElementById("nidina").className="active";
		 break;
 }
 
 if(opc!=0 && opc<=3) //Productos nidina
 {
	 document.getElementById("link"+opc).style.background="#CE4439";
	 document.getElementById("link"+opc).style.color="#FFFFFF";	 
 }
 else if(opc!=0 && opc>3) //Productos nadina
 {
	 document.getElementById("link"+opc).style.background="#09449E";
	 document.getElementById("link"+opc).style.color="#FFFFFF";	 
 }
}

function doShowPersonas() {
	var obj = document.getElementById("num_hijos");
	var num = document.registro.num_hijos.value;
	for(n=1; n<=4; n++) {
		obj = document.getElementById("cuerpo_"+(n));
		if(n<=num && n>=1) 
			obj.style.display="block";
		else
			obj.style.display="none";
	}
}
function MostrarHijosUpdate(num) {
	//alert("Num hijos: " + num);
	for(n=1; n<=4; n++) {
		obj = document.getElementById("cuerpo_"+(n));
		if(n<=num && n>=1) 
			obj.style.display="block";
		else
			obj.style.display="none";
	}
}
function check_edad(dia,mes,any,elemento)
{
	//alert("Dia " + dia + " Mes " + mes + " Any "+any);
	avui=new Date()
	mayor=false;
	
	if(dia!="" && mes!="" && any!="")
	{
	  if(any==2006)
	 {	
		if(mes<(avui.getMonth()+1))
		  mayor=true;
		if(mes==(avui.getMonth()+1))
		{
			if(dia<avui.getDate())
			mayor=true;
		}
	 }
	 if(mayor==true)
	 {
		 alert("Sólo es válido para niños de 0 a 3 años");
		 elemento.selectedIndex=0;
	 }
//	 else
//	 {
//		copiar_fecha(dia,"dia");
//		copiar_fecha(mes,"mes");
//		copiar_fecha(any,"any");
//	 }
	}
}
function mostrar(opcion,div_id){
  
  if(opcion.checked==true)
    document.getElementById(div_id).style.display="block";
  else
    document.getElementById(div_id).style.display="none";
}
