// JavaScript Document

function enviaLink(Caminho){
  window.open('form_envia.asp'+'?Caminho='+Caminho,'enviaLink','width=260px,height=140px,scrollbars=no,menubar=no,resizable=no,titlebar=no');
}

function Verificacampo_link()
{
  if (document.formenvia._email.value == "")
  {
    alert("Favor preencher o seu e-mail");
    document.formenvia._email.focus();
	return;
  }

  if (document.formenvia._emaildestinatario.value == "")
  {
    alert("Favor preencher o campo E-mail do Destinatário");
    document.formenvia._emaildestinatario.focus();
	return;
  }
  document.formenvia.submit();
}

data_comp = new Date()

var dia=new Array(7)
dia[0]="Domingo"
dia[1]="Segunda-feira"
dia[2]="Terça-feira"
dia[3]="Quarta-feira"
dia[4]="Quinta-feira"
dia[5]="Sexta-feira"
dia[6]="Sábado"

var mes=new Array(12)
mes[0]="janeiro"
mes[1]="fevereiro"
mes[2]="março"
mes[3]="abril"
mes[4]="maio"
mes[5]="junho"
mes[6]="julho"
mes[7]="agosto"
mes[8]="setembro"
mes[9]="outubro"
mes[10]="novembro"
mes[11]="dezembro"



function Data(){
	document.write(dia[data_comp.getDay()]+", dia "+data_comp.getDate()+" de "+mes[data_comp.getMonth()]+" de "+data_comp.getFullYear());
}

function abrir(nome){
	url="_curriculos/"+nome+".html";
	window.open(url,'curr','width=300px,height=150px,scrollbars=yes,menubar=no,resizable=no,titlebar=no,top=300,left=300');
}

var min=8;
var max=18;
function increaseFontSize() {
   var p = document.getElementsByTagName('p');
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseInt(p[i].style.fontSize.replace("px",""));
      } else {
         var s = 12;
      }
      if(s!=max) {
         s += 1;
      }
      p[i].style.fontSize = s+"px"
   }
}
function decreaseFontSize() {
   var p = document.getElementsByTagName('p');
   for(i=0;i<p.length;i++) {
      if(p[i].style.fontSize) {
         var s = parseInt(p[i].style.fontSize.replace("px",""));
      } else {
         var s = 12;
      }
      if(s!=min) {
         s -= 1;
      }
      p[i].style.fontSize = s+"px"
   }   
}

function mostrasindicatos(nrofed,nmefed,sttfed)
{
  var posx, posy;
  posx = ((screen.width - 400)/2);
  posy = ((screen.height - 500)/2);

  document.frm_fed_sind.num_fed.value = nrofed;
  document.frm_fed_sind.nome_fed.value = nmefed;
  document.frm_fed_sind.stt_fed.value = sttfed;

  window.open("entidades_sindicatos.asp?num_fed="+document.frm_fed_sind.num_fed.value+"&nome_fed="+document.frm_fed_sind.nome_fed.value+"&stt_fed="+document.frm_fed_sind.stt_fed.value, "", "dependent=yes,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=590,height=500,screenX="+posx+",screenY="+posy);  
}

function mostra(o) {
	if(document.getElementById(o).style.display=='none') { document.getElementById(o).style.display='block'; 
 	} else { 
	document.getElementById(o).style.display='none';  
  } 
} 

function mostradetalhepratica(nropratica)
{
  var posx, posy;
  posx = ((screen.width - 400)/2);
  posy = ((screen.height - 500)/2);

  window.open("pratica_desc.asp?num_pratica="+nropratica, "", "dependent=yes,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=590,height=500,screenX="+posx+",screenY="+posy);  
}
