// JavaScript Document

function requisitarTop10()
{
	area = document.formTop10Modal.ddlArea.value;
	email = document.formTop10Modal.txtEmailReceber.value;
	idorigem = document.formTop10Modal.hfIdOrigem.value;
	
	if (area == "0") {
		$("#erroModalTop10").html("<p class='red'>* Escolha sua área</p>");
	}
	else if (email == "Digite seu e-mail" || !isEmail(email) || email.indexOf('@portaleducacao.com.br') != -1 ) {
		$("#erroModalTop10").html("<p class='red'>* preencha seu e-mail corretamente</p>");
	} 
	else {
		loadXMLDocParams('/educacao/paginas/cadastro_usuario_top10.asp?acao=cadastro&idarea=' + area + '&email='+ email+ '&idorigem='+ idorigem, 'divRes', true, false, trataRetornoCadastroTop10);
	}	
}

function requisitarTop10AoVivo()
{
	email = document.formTop10ModalAoVivo.txtEmailReceber.value;
	idorigem = document.formTop10ModalAoVivo.hfIdOrigem.value;

	if (email == "Digite seu e-mail" || !isEmail(email) || email.indexOf('@portaleducacao.com.br') != -1 ) {
		$("#erroModalTop10AoVivo").html("<p class='red'>* preencha seu e-mail corretamente</p>");
	} 
	else {
		loadXMLDocParams('/educacao/paginas/cadastro_usuario_top10.asp?acao=cadastro&idarea=70&email='+ email+ '&idorigem='+ idorigem, 'divRes', true, false, trataRetornoCadastroTop10AoVivo);
		document.getElementById("erroModalTop10AoVivo").style.display = "none";
		document.getElementById("divRes").style.display = "none";		
		document.getElementById("formTop10ModalAoVivo").style.display = "none";
	}	
}

function trataRetornoCadastroTop10(){
	var resultado;
	var textoResult;
	
	if (req.readyState == 4) {
		if (req.status == 200) {
			resultado = req.responseText;			
			document.getElementById("formTop10Modal").style.display= "none";
			document.getElementById("erroModalTop10").style.display= "none";
			document.getElementById("divRes").style.display= "none";
			document.getElementById("respostaCadastro").style.display= "block";		
			document.getElementById("fecharMod").style.display= "block";
			document.getElementById("respostaCadastro").innerHTML = resultado;
			cadastrarModalTop10();			
		} else {
			alert("Ops!! Falhou trataRetorno:\n" + req.statusText);
		}
	}
}

function trataRetornoCadastroTop10AoVivo(){
var resultado;
	var textoResult;
	
	if (req.readyState == 4) {
		if (req.status == 200) {
			resultado = req.responseText;
			document.getElementById("respostaCadastro").style.display= "block";		
			document.getElementById("respostaCadastro").innerHTML = resultado;
			cadastrarModalTop10();
		} else {
			alert("Ops!! Falhou trataRetorno:\n" + req.statusText);
		}
	}
}
