function abrir_carga(){

	document.getElementById("cargando").style.display = "block";

	return

}

function cerrar_carga(){

	document.getElementById("cargando").style.display = "none";

	return

}


function MostrarDiv(cual){
	document.getElementById(cual).style.display = "block";
}

function OcultarDiv(cual){
	document.getElementById(cual).style.display = "none";
}
function ValidarForm(){
	if(document.form1.nombre.value==""){
		alert("Ingrese un nombre");
		document.form1.nombre.focus();
		return;
	}
	if(document.form1.apellido.value==""){
		alert("Ingrese un apellido");
		document.form1.apellido.focus();
		return;
	}
	if(document.form1.mensaje.value==""){
		alert("Ingrese un mensaje");
		document.form1.mensaje.focus();
		return;
	}
	if (document.form1.mail.value.indexOf('@', 0) == -1 || document.form1.mail.value.indexOf('.', 0) == -1) {
		alert("Ingrese un mail válido");
		return;
	}
	nombre = document.form1.nombre.value;
	apellido = document.form1.apellido.value;
	mail = document.form1.mail.value;
	mensaje = document.form1.mensaje.value;
	
//	document.form1.submit();
	
	petision("contacto_fin.php", "DIVContactenos", "POST", "nombre="+nombre+"&apellido="+apellido+"&mail="+mail+"&mensaje="+mensaje);
		
}
