/**
 * JS
 * (c) 2008 Darío G. Ruellan / ecimTech
 * http://www.ecimtech.com
 */

$(function()
{
	$('#emailForm').bind("submit", function(){ return form_send() });
});

function form_send() {
	var email_filter=/^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
	var email=document.emailForm.ema.value;

	if ( !email_filter.test(email) ) {
		alert("Por favor, ingresá un email");
		return false;
	}
	else
	{
		return true;
	}
}
