//Eldher Arce Para ICONS.ES Enero/2007
function llamarasincrono(url, titulo, id_contenedor){
eval('menu_Inicio.style.color=\'#6F6F6F\';');
eval('menu_Eventos.style.color=\'#6F6F6F\';');
eval('menu_Programa.style.color=\'#6F6F6F\';');
eval('menu_Ponentes.style.color=\'#6F6F6F\';');
eval('menu_Organización.style.color=\'#6F6F6F\';');
//eval('menu_Sala_de_prensa.style.color=\'#6F6F6F\';');
//eval('menu_Galería.style.color=\'#6F6F6F\';');
eval('menu_Inscripción.style.color=\'#6F6F6F\';');
eval('menu_Contacto.style.color=\'#6F6F6F\';');
eval('menu_'+titulo+'.style.color=\'#132B8D\';');
var pagina_requerida = false
if (window.XMLHttpRequest) {// Si es Mozilla, Safari etc
pagina_requerida = new XMLHttpRequest()
} else if (window.ActiveXObject){ // pero si es IE
try {
pagina_requerida = new ActiveXObject("Msxml2.XMLHTTP")
} 
catch (e){ // en caso que sea una versión antigua
try{
pagina_requerida = new ActiveXObject("Microsoft.XMLHTTP")
}
catch (e){}
}
}
else
return false
pagina_requerida.onreadystatechange=function(){ 
cargarpagina(pagina_requerida, id_contenedor)
}
pagina_requerida.open('GET', url+'?t='+titulo.replace('_', ' ').replace('_', ' '), true) 
pagina_requerida.send(null)
}

function cargarpagina(pagina_requerida, id_contenedor){
if (pagina_requerida.readyState == 4 && (pagina_requerida.status==200 || window.location.href.indexOf("http")==-1))
document.getElementById(id_contenedor).innerHTML=pagina_requerida.responseText
}

///////////////
function nuevoAjax(){
var xmlhttp=false;
 try {
  xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
 } catch (e) {
  try {
   xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  } catch (E) {
   xmlhttp = false;
  }
 }

if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
  xmlhttp = new XMLHttpRequest();
}
return xmlhttp;
}

function enviarMail(){
	
	c = document.getElementById('resultado_mensaje');
	
	//variable=documenet.nombre_del_form.nombre_del_control.value
	empresa=document.sendmail.empresa.value;
	siglas=document.sendmail.siglas.value;
	nombre=document.sendmail.nombre.value;
	apellidos=document.sendmail.apellidos.value;
	nif=document.sendmail.nif.value;
	num_nif=document.sendmail.num_nif.value;
	cargo=document.sendmail.cargo.value;
	direccion=document.sendmail.direccion.value;
	poblacion=document.sendmail.poblacion.value;
	cp=document.sendmail.cp.value;
	provincia=document.sendmail.provincia.value;
	telefono=document.sendmail.telefono.value;
	fax=document.sendmail.fax.value;
	email=document.sendmail.email.value;
	movil=document.sendmail.movil.value;	
	jornada1manana=document.sendmail.jornada1manana.checked;	
	jornada2manana=document.sendmail.jornada2manana.checked;	
	jornada3manana=document.sendmail.jornada3manana.checked;
	jornada1tarde=document.sendmail.jornada1tarde.checked;	
	jornada2tarde=document.sendmail.jornada2tarde.checked;	
	jornada3tarde=document.sendmail.jornada3tarde.checked;

	
	ajax=nuevoAjax();
	c.innerHTML = '<p style="text-align:center;"><img src="images/esperar.gif"/></p>'; 
	ajax.open("POST", "sendmail.php",true);
	ajax.onreadystatechange=function() {
		if (ajax.readyState==4) {
			c.innerHTML = ajax.responseText
		}
		borrarCampos()
	}
	ajax.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
	ajax.send("empresat="+empresa+"&siglast="+siglas+"&nombret="+nombre+"&apellidost="+apellidos+"&nift="+nif+"&num_nift="+num_nif+"&cargot="+cargo+"&direcciont="+direccion+"&poblaciont="+poblacion+"&cpt="+cp+"&provinciat="+provincia+"&telefonot="+telefono+"&faxt="+fax+"&emailt="+email+"&movilt="+movil+"&jornada1mananat="+jornada1manana+"&jornada2mananat="+jornada2manana+"&jornada3mananat="+jornada3manana+"&jornada1tardet="+jornada1tarde+"&jornada2tardet="+jornada2tarde+"&jornada3tardet="+jornada3tarde);
}

function borrarCampos(){
	document.sendmail.empresa.value="";
	document.sendmail.siglas.value="";
	document.sendmail.nombre.value="";
	document.sendmail.apellidos.value="";
	document.sendmail.nif.value="";
	document.sendmail.num_nif.value="";
	document.sendmail.cargo.value="";
	document.sendmail.direccion.value="";
	document.sendmail.poblacion.value="";
	document.sendmail.cp.value="";
	document.sendmail.provincia.value="";
	document.sendmail.telefono.value="";
	document.sendmail.fax.value="";
	document.sendmail.email.value="";
	document.sendmail.movil.value="";	
	document.sendmail.jornada1manana.checked=false;	
	document.sendmail.jornada1tarde.checked=false;	
	document.sendmail.jornada2manana.checked=false;	
	document.sendmail.jornada2tarde.checked=false;	
	document.sendmail.jornada3manana.checked=false;	
	document.sendmail.jornada3tarde.checked=false;	
	document.sendmail.nombre.focus();
}

function validar() {
	if ( document.sendmail.nombre.value == ""
 || document.sendmail.apellidos.value == ""
 || document.sendmail.direccion.value == ""
 || document.sendmail.poblacion.value == ""
 || document.sendmail.cp.value == ""
 || document.sendmail.provincia.value == ""
 || document.sendmail.email.value == ""
 ) {
   alert("Debe rellenar los campos en negrita obligatorios");
	}
	else {
	validaremail();
	}
}

function validaremail() {
	if ( document.sendmail.email.value.indexOf("@")!=-1 && document.sendmail.email.value.indexOf(".")!=-1 ){
	enviarMail();
	}
	else {
	alert("Por favor, introduzca un e-mail válido, gracias");	   
	}
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
