// JavaScript Document

// CALENDARIO

function setMultipleValues4(y,m,d) {
	document.forms[0].anyo_ini.value=y;
	document.forms[0].mes_ini.selectedIndex=m;
	for (var i=0; i<document.forms[0].dia_ini.options.length; i++) {
		if (document.forms[0].dia_ini.options[i].value==d) {
			document.forms[0].dia_ini.selectedIndex=i;
			}
		}
	}
	
function setMultipleValues5(y,m,d) {
	document.forms[0].anyo_fin.value=y;
	document.forms[0].mes_fin.selectedIndex=m;
	for (var i=0; i<document.forms[0].dia_fin.options.length; i++) {
		if (document.forms[0].dia_fin.options[i].value==d) {
			document.forms[0].dia_fin.selectedIndex=i;
			}
		}
	}
	
function getDateString(y_obj,m_obj,d_obj) {
	var y = y_obj.options[y_obj.selectedIndex].value;
	var m = m_obj.options[m_obj.selectedIndex].value;
	var d = d_obj.options[d_obj.selectedIndex].value;
	if (y=="" || m=="") { return null; }
	if (d=="") { d=1; }
	return str= y+'-'+m+'-'+d;
	}

 // MOSTRAR/OCULTAR CAPAS
function mostrarOcultar(nombreCapa) { 
    if (document.getElementById('OtherLocation').checked) {
        document.getElementById(nombreCapa).style.visibility="visible"; 
		}
        else
        {
        document.getElementById(nombreCapa).style.visibility="hidden"; 
        } 
    }



