// LMA

// Abre links em outra janela ( Padrão da W3C )
function AbrirJanela(endereco){
	window.open(endereco);
}

// Cadastra o Email pelo site
function fnInsereEmail(){
	var rtn = true;
	var obj;
	obj = document.getElementById("txtnews");
	
	if (obj.value == "") {
		alert('Informe o email!');
		obj.focus();
		rtn = false;
	} else {
		if (!isEmail(obj.value)) {
			alert('Email inválido!');
			obj.focus();
			rtn = false;
		}
	}
	
	if (rtn) {
		var op = "operacao=insereEmail";
		op += "&Email="+ document.getElementById("txtnews").value;
		fnAjax("GET", "divEmail", aplUrl + "inc/ajax.asp", op, "posEmail();", "");
		
	}
}

//Msg Email
function posEmail() {
	alert(document.getElementById("ret_email").value);
	document.getElementById("txtnews").value = "";
}
