// função genérica para abertura de popups
function Abre(vURL, vLarg, vAlt) {
	vTop = (screen.height / 2) - (vAlt / 2);
	vLeft = (screen.width / 2) - (vLarg / 2);
	vParam = "toolbar=no, location=no, status=no, menubar=no, width="+vLarg+", ";
	vParam += "height="+vAlt+", top="+vTop+", left="+vLeft+", ";
	vParam += "resizable=no, scrollbars=yes";
	vWindow = window.open(vURL,"JanelaNova",vParam);
}


// validação para o form de contato
function ComboConheceu(valor)
{
	if ((valor == 'Lista de emails que assina') ||
		(valor == 'Jornais') ||
		(valor == 'Revistas') ||
		(valor == 'Rádio') ||
		(valor == 'TV') ||
		(valor == 'Outros sites de Teresópolis') ||
		(valor == 'Outros sites de busca') ||
		(valor == 'Outros sites na Internet') ||
		(valor == 'Outro meio')
		)
	{
		document.getElementById('txtConheceuOutro').disabled = false;
	}
	else
	{
		document.getElementById('txtConheceuOutro').disabled = true;
	}
}


// validação do cadastramento no boletim (barra lateral)
function ValidaBoletim()
{
	var retorno = (!
			(
			(document.getElementById('txtNomeBol').value == '') ||
			(document.getElementById('txtEmailBol').value == '') ||
			(document.getElementById('txtNomeBol').value == 'Seu nome') ||
			(document.getElementById('txtEmailBol').value == 'Seu email')
			)
			);
	if (!retorno)
	{
		alert('Preencha os campos!');
		document.getElementById('txtNomeBol').focus();
		return false;
	}
	else
		return true;
}

function ChecarIn()
{
	if (document.getElementById('txtNome').value == '')
	{
		alert('Digite seu nome!');
		document.getElementById('txtNome').focus();
		return false;
	}
	else if (document.getElementById('txtEmail').value == '')
	{
		alert('Digite seu email!');
		document.getElementById('txtEmail').focus();
		return false;
	}
	else
		return true;
}

function ChecarOut()
{
	if (document.getElementById('txtEmailOut').value == '')
	{
		alert('Digite seu email!');
		document.getElementById('txtEmailOut').focus();
		return false;
	}
	else
	{
		if (confirm('Deseja realmente descadastrar seu email?'))
			return true;
		else
			return false;
	}
}



// menu guia comercial
/*
function MenuGuia(vAbre, vTop, vLeft)
{
	if (vAbre)
	{
		document.getElementById('divGuia').style.display = 'block';
		if (vTop > 0)
			document.getElementById('divGuia').style.top = (vTop  + 140) + 'px';
		if (vLeft > 0)
			document.getElementById('divGuia').style.left = (vLeft + ((screen.width - 765) / 2) + 50) + 'px';
	}
	else
	{
		document.getElementById('divGuia').style.display = 'none';
	}
}
*/
