function valiEnviaAmigo(frm, locale) {
	var filtro = /^[_a-zA-Z0-9-]+(\.[_a-zA-Z0-9-]+)*@+([_a-zA-Z0-9-]+\.)*[a-zA-Z0-9-]{2,200}\.[a-zA-Z]{2,6}$/;
	if (!filtro.test(frm.EmailAmigo.value)) {
		var txt = (locale == 'es') ? "Debe ingresar un Email válido." : "You need to fill a valid Email address";
		alert(txt);
		frm.EmailAmigo.focus();
		return false;
	}
}

function valiComentario(frm, locale) {
	if (frm.Comentario.value == "") {
		var txt = (locale == 'es') ? "Debe ingresar el Comentario." : "You need to fill comment field";
		alert(txt);
		frm.Comentario.focus();
		return false;
	}	
}


