function ValidacionFomulario(form)
{
	
	if (Empty(form.nombre.value))
	{
		alert('Ingrese su Nombre por favor.');
		form.nombre.focus();
		return false;
	}
		if (!isInteger(form.fono.value))
	{
		alert('Ingrese su Teléfono por favor.');
		form.fono.focus();
		return false;
	}
		if (!isMail(form.email.value)) 
	{
		alert('Ingrese su E-mail por favor.');
		form.email.focus();
		return false;
	} 
	if (Empty(form.comentario.value))
	{
		alert('Ingrese su Comentario por favor.');
		form.comentario.focus();
		return false;
	}
	
	return;
}
