
	var xmlhttp;
	



	function contacto (url,seccion) {
		xmlhttp=null;
		var nombre = document.getElementById('Nombre'); 
		var email = document.getElementById('Email'); 
		var telefono = document.getElementById('Telefono'); 
		var comentario = document.getElementById('Comentario'); 
		var variable= "?nombre=" + nombre.value + "&email=" + email.value + "&telefono=" + telefono.value + "&comentario=" + comentario.value + "&sec=" + seccion;
		var url2 = url + variable;
		if (nombre.value !="" && email.value !="" && comentario.value!=""){
		nombre.value="";
		email.value="";
		telefono.value="";
		comentario.value="";

		window.open(url2 , "Confirmacion" , "width=300,height=120,scrollbars=NO,Toolbar=NO,Menubar=NO,Location=NO,Directories=NO"); 

		}else{
		
			alert("Debe rellenar almenos el nombre y el email, asi como el comentario");
		}


		} // fin de contacto


	