

function creaPoblacion(){
	var selectTmp = document.getElementById('selProvincia');
	var sel = selectTmp.options[selectTmp.selectedIndex].value;
	window.location.href = "mails.php?provincia=" + sel +"&poblacion="; 
}
function enviaDades(){
	var selectTmp = document.getElementById('selPoblacion');
	var selPob = selectTmp.options[selectTmp.selectedIndex].value;
	var selectTmp = document.getElementById('selProvincia');
	var sel = selectTmp.options[selectTmp.selectedIndex].value;
	window.location.href = "mails.php?provincia=" + sel +"&poblacion=" + selPob;	
}

function submitDades(){

var aux;
	if (document.forms[0].subject.value=='') {
		alert('Debe establecer un subject al mail');
		document.forms[0].subject.focus();
		return false;
	}
}

function desplazaBarra(percent){
	alert(percent);
	var td = document.getElementById('proceso');
	td.width = percent;
}

function carregaAccion(accion){
	var url = ""
	var iframe = document.getElementById('ifrAccion');
	if (accion == 1){
		url = "eliminar_registro.php"		
	}
	else{
		url = "formulario_registro.html"
	}

	iframe.src = url;
}

function selProvincia(id){
	var provincia = new Array("Coruna","Pontevedra","Lugo","Ourense","Asturias","Cantabria","Alava","Vizcaya","Guipuzcoa","Navarra","Huesca","Zaragoza","Teruel","LaRioja","Girona","Barcelona","Lleida","Tarragona","Baleares","Santa Cruz de Tenerife","LasPalmas","Castellon", "Valencia","Alicante","Murcia","Madrid","Leon","Palencia","Burgos","Soria","Valladolid","Segovia","Zamora","Avila","Salamanca","Guadalajara","Cuenca","Albacete","Ciudad Real","Toledo","Caceres","Badajoz","Huelva","Cadiz","Sevilla","Malaga","Cordoba","Jaen","Granada","Almeria");
	provincia = provincia.sort();
	var sel = document.getElementById(id);
	var opcion = document.createElement('option');
	opcion.value = "seleccione";
	opcion.text = "-- Seleccione -- ";
	try{
   		sel.add(opcion,null); // standards compliant
    	}
  		catch(ex)
    	{
    	sel.add(opcion); // IE only
    	}
	for( i = 0; i < provincia.length; i++){
		opcion = document.createElement('option');
		opcion.value = provincia[i];
		opcion.text = provincia[i];
		try{
   			sel.add(opcion,null); // standards compliant
    	}
  		catch(ex)
    	{
    	sel.add(opcion); // IE only
    	}
	}
}

function eligeDiv(szNomDivVisible,szNomDivOculto){
	var divOculto = document.getElementById(szNomDivOculto);
	var divVisible = document.getElementById(szNomDivVisible);
	divOculto.style.visibility = "hidden";
	divVisible.style.visibility = "visible";
	var checkBox = document.getElementById("flagEliminar");
	var checkBox2 = document.getElementById("flagEliminar2");
	checkBox.checked = false;
	checkBox2.checked = true;
	return true;
}

function eleminarRegistro(mail){
		window.open('eliminar_registro.php?mail_1=' + mail);
		
}