﻿//Meu Java
//Barra de progresso
cont = 0
total = -1



//Menu DIVS
function ocultarDivs(){ 
if (!document.getElementsByTagName == false){
	var tag = document.getElementsByTagName("div");
	for (var i=0; i<tag.length; i++) { 
	    var div = tag[i];
        var verifica = div.title;
				        if (verifica == "menu"){
					        div.style.visibility='hidden';
					        
				        }                               
     }
}
}
                                              

function mouseover(myid,ide,img){

document.getElementById(myid).src="images/" + img;
ocultarDivs();
document.getElementById(ide).style.visibility='visible';

				

}


function fotos(){
largura=screen.availWidth;
altura=screen.availHeight;
window.open('fotos1.htm','_blank','resizable=yes,scrollbars=yes,top=0,left=0,width='+largura+',height=' + altura);

}

function so(file){

if (file=="fotos1") {
window.open(file + '.htm','_blank');
} else {
window.open(file + '.htm','myframe');
}


}


function mouseout(myid,img){
document.getElementById(myid).src="images/" + img;
}

function mouseclick(myid,ide){
//document.getElementById(myid).src="images/" + img;
var pos=ide;
if (pos!=''){
document.getElementById(ide).style.visibility='visible';
}

}


//zoom
var myzoom;
var k=0;
var flag=1;
var v1,v2;

function zoom(){


if (flag==1){
flag=0;
Aumentar();

} else {
flag=1;
Diminuir();

}

}

      function Aumentar(){
    
        k++;
          
        if(k>20) k=0;
        if(k==0) return;

        document.getElementById("foto1").width=document.getElementById("foto1").width + k;
        document.getElementById("foto1").height=document.getElementById("foto1").height + k;
        document.getElementById("largura").innerHTML = "Largura " + document.getElementById("foto1").width;
        document.getElementById("altura").innerHTML = "Altura " + document.getElementById("foto1").height;
        document.getElementById("foto1").border=k;
        myzoom=window.setTimeout("Aumentar();",50);
  
       
      }
     
      function Diminuir(){
        k++;
          
        if(k>20) k=0;
        if(k==0) return;

        document.getElementById("foto1").width=document.getElementById("foto1").width - k;
        document.getElementById("foto1").height=document.getElementById("foto1").height - k;
        document.getElementById("largura").innerHTML = "Largura " + document.getElementById("foto1").width;
        document.getElementById("altura").innerHTML = "Altura " + document.getElementById("foto1").height;
        document.getElementById("foto1").border=2;
        myzoom=window.setTimeout("Diminuir();",50);

      }
   
   function hello()
   {
   alert("Hello")
   }
   
    function rez()
   {
    k++;
    
          
        if(k>20) k=0;
        if(k==0) return;
    
 
   v1=document.getElementById("Kiz").offsetWidth+k;
   v2=document.getElementById("Kiz").offsetHeight+k;
    
   document.getElementById("Kiz").style.width= v1 + "px";
   document.getElementById("Kiz").style.height= v2 + "px";
   
   myzoom=window.setTimeout("rez();",50);
   }


