// JavaScript Document

function aplicarConteudo(fcIdDestino) {
	var ajexConteudo;
	
	ajexConteudo = document.getElementById("ajexHtmContent").innerHTML;
	parent.document.getElementById(fcIdDestino).innerHTML = ajexConteudo;
}

function alterarEstrutura() {
	var id;
	id = document.getElementById("selEstrutura").value;
	
	window.ajexLiteContent.location.replace("estrutura_001a.asp?id=" + id);
}

function ativarComida() {
	
	document.getElementById("abaComida").className = "abaAtiva_100";
	document.getElementById("abaBebida").className = "abaInativa_100";
	
	document.getElementById("cardapioComida").style.display = "";
	document.getElementById("cardapioBebida").style.display = "none";
}

function ativarBebida() {
	document.getElementById("abaComida").className = "abaInativa_100";
	document.getElementById("abaBebida").className = "abaAtiva_100";
	
	document.getElementById("cardapioComida").style.display = "none";
	document.getElementById("cardapioBebida").style.display = "";
}

function verificaEmail(fcValor) {
	resultado = true;
	if (fcValor.indexOf("@") <= 0 ) {
		resultado = false;
	}
	return resultado
}

function verificarForm() {
	var meuEmail;
	var retorno;
	
	meuEmail = document.getElementById("frEmail").value;
	
	if (verificaEmail(meuEmail) == true) {
		retorno = true;
	} else {
		alert("Você precisa digitar um email válido.")
		retorno = false;
	}
	
	return retorno;
}