EscrevaCookie();
function EscrevaCookie(){
	var hoje = new Date();
	var data = new Date("December 31, 2023");
	var cookie_data = data.toGMTString();
	var o_cookie = "resolucao="+ screen.width;
	var o_cookie = o_cookie + ";expires=" + cookie_data;
	document.cookie=o_cookie
}
function env_formi(form){
	var formi=document.getElementById(form);
	formi.submit();
}
function env_coluna(dia){
	var coluna=document.getElementById('colunas');
	coluna.value=dia;
	//alert(coluna.value);
	var formi=document.getElementById('link_di');
	formi.submit();
}
function showPage(dad){
/*	var notas=document.getElementById(dad);
	if(notas==null){
		
	}
	else{
		var nota_valor=notas.value;
		//alert(nota_valor);
		if(nota_valor==0){ }
		else if(nota_valor==1){
			if(navigator.appName=='Netscape'){  scrollBy(0,2550); }
			else{ scrollBy(0,2550); }
		}
		else{
			if(navigator.appName=='Netscape'){ scrollBy(0,2550); }
			else{ scrollBy(0,2550); }
		}
	}*/
}

function focarCampo(){
	var campoBusca = document.getElementById('cpesquisa');
	campoBusca.focus();
	
}
function testarBusca(){
	var campoBusca = document.getElementById('cpesquisa');
	var valor = campoBusca.value;
	var tipoVazio = /^ *$/;
	if (tipoVazio.test(valor)){
		return false;
	}
	else{
		return true;
	}
	return false;
}
function imprimir(colun){
	//alert(colun);
	//var col=document.getElementById('coluna');
	//var tru=col.innerHTML;
	window.print(colun);
}

function indicar_amigo(indique){
var browserName=navigator.appName;
	guga=document.getElementById(indique);
	guga.style.visibility='visible';
	guga.style.border='0px solid #999';
	guga.style.color='red';
	guga.style.marginTop='2px';
	if (browserName=="Netscape"){ guga.style.height='85px'; }
	else{
		if (browserName=="Microsoft Internet Explorer"){ guga.style.height='65px'; }
	}	
}
function oculta(indique, inp_indique){
	guga=document.getElementById(indique);
	guga.style.visibility='hidden';
	guga.style.height='45px';
	guga.style.border='0px solid #999';
	guga.style.color='red';
	guga.style.marginTop='2px';
	input=document.getElementById(inp_indique);
	input.value="";
}
function mascara_cep() {
	if(document.form.cep.value.length == 2) {
		document.form.cep.value += '';
	}
if(document.form.cep.value.length == 5) {
	document.form.cep.value += '-';
	}
}

function mascara_telefone() {
	if(document.form.fone.value.length == 2) {
		document.form.fone.value += '-';
	}
if(document.form.fone.value.length == 7) {
	document.form.fone.value += '-';
	}
}

function back_g(email, aid){
	as=document.getElementById(aid);
	if(email=='muda_v'){
		as.style.backgroundColor='#CCCFDB';	
	}
	else{
		as.style.backgroundColor='#E6E6EE';
	}
}

function visib(amostra, dad){
 	guga=document.getElementById(dad);
	if(amostra=='oculta'){
		guga.style.visibility='hidden';
		guga.style.height='0px';
		guga.style.border='0px solid red';
		guga.style.color='red';
		guga.style.margin='0px';
		guga.style.paddingLeft='0px';
		guga.style.width='100%';
		guga.style.marginTop='0px';	
	}
	else{
		guga.style.visibility='visible';
		guga.style.height='140px';
		guga.style.border='0px solid red';
		guga.style.color='red';
		guga.style.margin='0px';
		guga.style.paddingLeft='0px';
		guga.style.width='100%';
		guga.style.marginTop='0px';		
	}
}

function form_cale(for1, acao){
	var v_acao=document.getElementById('artigo');
	v_acao.value=acao;

	f3=document.getElementById(acao);
	//alert(f3.value);
	if(acao=='artigo'){
		f3.action='salvando';
	}
	else if(acao=='notificar'){
		f3.action='notificar';
	}
	//f3.action='sobre';
	//alert(for1);
	//f3.submit();
}