// JavaScript Document

window.onload = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+="over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace("over", "");
   }
   }
  }
 }
}

function mascara_cpf(cpf){ // Esta eh a funcao que formata o cpf.
	var mycpf = '';
	mycpf = mycpf + cpf;
	if (mycpf.length == 3){
		mycpf = mycpf + '.';
		document.forms[0].cpf.value = mycpf;
	}
	if (mycpf.length == 7){
		mycpf = mycpf + '.';
		document.forms[0].cpf.value = mycpf;
	}
	if (mycpf.length == 11){
		mycpf = mycpf + '-';
		document.forms[0].cpf.value = mycpf;
	}

}
function mascara_nasc(nasc){ // Esta eh a funcao que formata o cpf.
	var mynasc = '';
	mynasc = mynasc + nasc;
	if (mynasc.length == 2){
		mynasc = mynasc + '/';
		document.forms[0].nasc.value = mynasc;
	}
	if (mynasc.length == 5){
		mynasc = mynasc + '/';
		document.forms[0].nasc.value = mynasc;
	}
}
function popup (URL,width,height){
	neww = width + 20
   window.open("imgs.php?img="+URL+"&w="+width+"&h="+height,"popup","width="+neww+",height="+height+",scrollbars=YES,directories=NO,LOCATION=NO,MENUBAR=NO,STATUS=NO,TITLEBAR=NO,TOOLBAR=NO,TOP=0,LEFT=0")
} 
function popup2 (URL,width,height){
   window.open(URL,"popup2","width="+width+",height="+height+",scrollbars=YES,directories=NO,LOCATION=NO,MENUBAR=NO,STATUS=NO,TITLEBAR=NO,TOOLBAR=NO,TOP=0,LEFT=0")
} 