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
	nombre=document.enviar_email.NOMBRE.value;
	mail=document.enviar_email.EMAIL.value;
	provincia=document.enviar_email.PROVINCIA.value;
	telefono=document.enviar_email.TELEFONO.value;
	
	
	ajax=nuevoAjax();
	c.innerHTML = '<p style="text-align:center;"><img src="esperando.gif"/>ENVIANDO...</p>'; 
	ajax.open("POST", "envia_mail.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("NOMBRE="+nombre+"&EMAIL="+mail+"&PROVINCIA="+provincia+"&TELEFONO="+telefono)
}

function borrarCampos(){
	document.enviar_email.NOMBRE.value="";
	document.enviar_email.EMAIL.value="";
	document.enviar_email.PROVINCIA.value="";
	document.enviar_email.TELEFONO.value="";
}

function PopupCenter(pageURL, title,w,h) {
var left = (screen.width/2)-(w/2);
var top = (screen.height/2)-(h/2);
var targetWin = window.open (pageURL, title, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);
}

function is_loaded() { //DOM 
  if (document.getElementById){
	document.getElementById('preloader').style.visibility='hidden';
  }else{
	if (document.layers){ //NS4
		document.preloader.visibility = 'hidden';
	}else { //IE4
		document.all.preloader.style.visibility = 'hidden';
	}
  }
}