//Funcion que limita el maxlength de una text area
function imposeMaxLength(Object, MaxLen)
{
  return (Object.value.length <= MaxLen);
}

function enviarayuda(formulario){
alert('prueba');
resultado=megavalidacion(formulario);

	if (resultado!=false)	
	{
	respuesta = document.getElementById('respuesta');
	envia('ajax/enviarcorreo.php',
	'&nombre='+document.contactoform.wiznombre.value+
	'&email='+document.contactoform.wizemail.value+
	'&telefono='+document.contactoform.wiztelefono.value+
	'&motivo='+document.contactoform.wizmotivo.value);
	}

}