	function EnviarFormularioContacto(  )
	{
		document.getElementById("divFrmContacto").innerHTML = '<img src="img/procesando.gif" width="16" height="16">' ;
				
		xajax_EnviarFormularioContacto(xajax.getFormValues('frmContacto') );
	}	
	
	function evaluaEnviarFormularioContacto( resultado )
	{
		if( resultado == "" )
		{
			Sexy.info('<h1>Su Consulta ha sido enviada exitosamente</h1>' ) ;
			//alert( 'Su Inquietud ha sido enviada' ) ;
			document.getElementById("divFrmContacto").innerHTML = "" ;	
			
			document.getElementById("txtPais").value = "" ;
			document.getElementById("txtNombre").value = ""
			document.getElementById("txtEmail").value = ""
			document.getElementById("txtTelefono").value = ""
			document.getElementById("txtTelefonoMovil").value = ""
			document.getElementById("txtNotas").value = ""
			
		}
		else
		{
			Sexy.error('<h1>Se han encontrado errores:</h1><p>'+resultado+'</p>');
			document.getElementById("divFrmContacto").innerHTML = "" ;
		}
	}
