//Abre o Relacionamento
function changeRelacionamento(id){
	var url  = document.getElementById(id).value;
	var area = document.getElementById("areasFull").value;
	
	if(url != ""){		
		window.location.href=(url+"&area="+area);
	}
}

function validaSalas(){
	
	var nSala, ltSala;
	
	nSala = document.getElementById('nSala').value;
	ltSala = document.getElementById('ltSala').value;
		
	if(!nSala && !ltSala){
		window.alert("Digite o número da Sala ou selecione na lista!");
		return false;
	}
	
	return true;
	
}

function getPesquisa(status){
	
	var status      = document.getElementById(status);
	var divPesquisa = document.getElementById('pesquisa');
	var imgPesquisa = document.getElementById('imgPesquisa') ;
	//var data = new Date();
	
	if(parseInt(status.value)){		
		
		divPesquisa.style.display='';
		imgPesquisa.src="sys/images/menosPesq.gif";
		status.value = 0;		
		setCookie('ckPesquisa','1');
		//alert(data.toGMTString());
	} else {		
		
		divPesquisa.style.display='none';
		imgPesquisa.src="sys/images/maisPesq.gif";		
		status.value = 1;
		setCookie('ckPesquisa','0');
		
	}
}

function printNot(id_noticia){
	window.open('sys/include/printNot.php?id='+id_noticia, target='_blank');
}

function fechaPublicidade(){
	
	if(document.getElementById("nexibir").checked){
		setCookie('publicidade', 1, '');
	}
	
	document.getElementById("publicidade").style.display='none';
	
}

function formEmail(acao){
	
	//alert(acao);
	
	objForm = document.getElementById('formEmail');
	
	//True Exibe a Div
	if(acao == 'true'){
		
		objForm.style.width="410px";
		objForm.style.position="absolute";
		objForm.style.top="300px";
		objForm.style.left="180px";
		//objForm.style.z-Index="3";
		
		objForm.style.display="";
	} else {
		objForm.style.display='none';
	}
	
}

function mtFonte(acao){
	
	var tFonte      = parseInt(document.getElementById('tFonte').value);
	var docsTitle   = document.getElementById('docsTitle');
	var docsContent = document.getElementById('docsContent');
	var docsRdp     = document.getElementById('docsRdp');
	var fonte;
	
	if(acao == "mais"){
		
		if(tFonte < 15){
			
			fonte = (tFonte+1);			
			docsTitle.style.fontSize = fonte;
			docsContent.style.fontSize = fonte;
			docsRdp.style.fontSize = fonte;
			document.getElementById('tFonte').value = fonte;
			
		}
		
	} else if(acao == "menos"){
		
		if(tFonte > 8){
			
			fonte = (tFonte-1);			
			docsTitle.style.fontSize = fonte;
			docsContent.style.fontSize = fonte;
			docsRdp.style.fontSize = fonte;
			document.getElementById('tFonte').value = fonte;
			
		}
		
	}
	
}

function entraSala(id_sala){
	window.open('sala/sys/action/entrasala.php?id_sala='+id_sala, target='_blank');
}