function checaEmail(valor) {
	if ( !valor.match("^[a-zA-Z0-9_\.]+@[a-zA-Z0-9\.]+\\.[a-zA-Z0-9\.]+$") ) return false;
	return true;
}
