// JavaScript Document
function confirmBox(formId) {
	if (confirm("Você esta prestes a apagar permanentemente um registro. Deseja continuar?")) {
		var formObj = document.getElementById(formId);
		formObj.submit()
	}
}


function esquecisenha(){
	document.getElementById("senhanormal").style.display = "none";
	document.getElementById("senhaesqueci").style.display = "block";
	
}

function mostradivv(div){
	atual = document.getElementById(div).style.display;
	if(atual == "block"){
		document.getElementById(div).style.display = "none";
		document.getElementById("seta").src =  "http://www.amatra4.org.br/img/seta_baixo.gif";
	}else{
		document.getElementById(div).style.display = "block";
		document.getElementById("seta").src =  "http://www.amatra4.org.br/img/seta_sobe.gif";
	}
}

///// INICIO //////////////
function inicio(){
  var myWidth = 0, myHeight = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    myWidth = window.innerWidth;
    myHeight = window.innerHeight;
  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    myWidth = document.documentElement.clientWidth;
    myHeight = document.documentElement.clientHeight;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    myWidth = document.body.clientWidth;
    myHeight = document.body.clientHeight;
  }

 myWidth  = myWidth;
  if(myWidth < 1024){
	  myWidth = 1024;
  }

	//if(myWidth > 1200 && myWidth <= 1280){
		//document.getElementById("body").className ="body1280";
	//}
  //myWidth = myWidth -16;
  
 	meioh = myHeight-60;
	if(document.getElementById("boxprincipal").style.height < meioh){
		document.getElementById("boxprincipal").style.height = meioh+"px"; 
	}
	var teste0 = document.getElementById("lateral1");
	if(teste0){
		document.getElementById("lateral1").style.height = meioh-140+"px"; 
	}
	var teste2 = document.getElementById("lateral2");
	if(teste2){
		document.getElementById("lateral2").style.height = meioh-140+"px"; 
	}	
	document.getElementById("admlistagemid").style.height = meioh-140+"px"; 
		
}
function logaragora(){
	var usuario = document.getElementById("usuario").value;
	var senha = document.getElementById("senha").value;
	if(usuario != "" && senha != ""){
		document.logar.submit();
	}
}
function sairagora(caminho){
	caminho = caminho+'logout.php'
	//alert(caminho);
	self.location.href = caminho;
}
function foto(id, loader, url){
	document.getElementById(loader).style.display = "block";
	var url = url+"?idfoto="+id;
	alteraURL(url, loader)
}
function fecharfoto(loader){
	document.getElementById(loader).style.display = "none";
}