//====================================================================
//
//              VISUALIZADOR DE FOTOS
//
//
var Fotos_Visualizar = {
	Posicao_Usuario_Y: 0,
	Fotos: new Array(),
	Add_Fotos: function(Todas_Fotos){
		this.Fotos = Todas_Fotos.split('||');
	},
	Apagar_Lista_Fotos: function(){
		this.Fotos.clear();
	},
	Img_Atual:{
			Altura: 0,
			Largura: 0,
			Url: '',
			Legenda: '',
			Id: 0,
			Carregar: function(id){
				if (id<0 || id>(Fotos_Visualizar.Fotos.length -1)){
					var Err= "Imagem Não Encontrada"
				}else{
					var Informacoes = new String(Fotos_Visualizar.Fotos[id]);
					var Inf_Foto = Informacoes.split("|");
					this.Legenda= Inf_Foto[3];
					this.Altura= Inf_Foto[2];
					this.Largura= Inf_Foto[1];
					this.Url= Inf_Foto[0];
					this.Id= id;
				};
			},
			Zerar: function(){
				this.Altura= 0;
				this.Largura= 0;
				this.Url= '';
				this.Id= 0;
			}
	},
	Proxima_Imagem: function(){
		if ((this.Img_Atual.Id + 1)<=(this.Fotos.length - 1)){
			document.getElementById('dv_Foto_Proximo').innerHTML = "<a href='javascript:Fotos_Visualizar.Redim_Img(" + (this.Img_Atual.Id + 1) + ")' >&gt;&gt;</a>";
		}else{
			document.getElementById('dv_Foto_Proximo').innerHTML = "&gt;&gt;";
		};
		document.getElementById('dv_Foto_Proximo').style.visibility = "visible";
	},
	Anterior_Imagem: function(){
		if ((this.Img_Atual.Id - 1)>=0){
			document.getElementById('dv_Foto_Anterior').innerHTML = "<a href='javascript:Fotos_Visualizar.Redim_Img(" + (this.Img_Atual.Id - 1) + ")' >&lt;&lt;</a>";
		}else{
			document.getElementById('dv_Foto_Anterior').innerHTML = "&lt;&lt;";
		};
		document.getElementById('dv_Foto_Anterior').style.visibility = "visible";
	},
	Navegador: "",
	Tempo_Loop: function(){
		var Velo;
		if (this.Navegador== "Moz"){
			Velo = 15;
		}else{
			Velo = 26;
		};
		return Velo;
	},
	Tamanho_TelaX: function (){
		//alert(window.screenX);
		if (navigator.appName!=="Microsoft Internet Explorer"){
			this.Navegador = "Moz";
			return window.innerWidth;
		}else{
			this.Navegador = "IE";
			return document.documentElement.clientWidth;
		};
	},
	Tamanho_TelaY: function (){
		//alert(window.outerHeight);
		if (navigator.appName!=="Microsoft Internet Explorer"){
			this.Navegador = "Moz";
			//alert(window.innerHeigh);
			return window.innerHeight + (this.Tamanho_Nova_Altura/2);
		}else{
			this.Navegador = "IE";
			//alert(document.documentElement.clientHeight);
			return document.documentElement.clientHeight + (this.Tamanho_Nova_Altura/1.5);
		};
	},
	Fundo_Visualizador: function(){
		window.scroll(0,0);
		document.getElementById('Dv_Fundo_Fotos').style.width = this.Tamanho_TelaX() + "px";
		document.getElementById('Dv_Fundo_Fotos').style.height = this.Tamanho_TelaY() + "px";
		if (this.Navegador == "Moz"){
			document.getElementById('Dv_Fundo_Fotos').style.opacity = 0.60;
			document.getElementById('dv_Legenda_Foto').style.opacity = 0.75;
		}else{
			var dv =document.getElementById('Dv_Fundo_Fotos');
			var dv2 =document.getElementById('dv_Legenda_Foto'); 	
			dv.style.filter = 'alpha(opacity=60)';
			dv2.style.filter = 'alpha(opacity=75)';
		};
		document.getElementById('Dv_Fundo_Fotos').style.visibility = "visible";
	},
	Fechar_Fundo_Visualizador: function(){
		document.getElementById('Dv_Fundo_Fotos').style.visibility = "hidden";
		document.getElementById('Dv_Fundo_Fotos').style.width = "1px";
		document.getElementById('Dv_Fundo_Fotos').style.height = "1px";
		document.getElementById('Dv_Fundo_Fotos').style.top = "1px";
		document.getElementById('Dv_Fundo_Fotos').style.left = "1px";
		document.getElementById('dv_Foto_Proximo').innerHTML = "";
		document.getElementById('dv_Foto_Proximo').style.visibility = "hidden";
		document.getElementById('dv_Foto_Anterior').innerHTML = "";
		document.getElementById('dv_Foto_Anterior').style.visibility = "hidden";
	},
	Posicao_Visualizador: function(){
		if (Math.floor((this.Tamanho_TelaY()-(this.Tamanho_Altura_Atual))/2)<10){
			document.getElementById('Img_Foto_Visualizar').style.top = "10px";
		}else if (Math.floor((this.Tamanho_TelaY()-(this.Tamanho_Altura_Atual))/2)>30){
			document.getElementById('Img_Foto_Visualizar').style.top = "30px";
		}else{
			document.getElementById('Img_Foto_Visualizar').style.top = Math.floor((this.Tamanho_TelaY()-(this.Tamanho_Altura_Atual))/2) + "px";
		};
		document.getElementById('Img_Foto_Visualizar').style.left = ((this.Tamanho_TelaX()-this.Tamanho_Largura_Atual)/2) + "px";
	},
	Tempo_Redim: '',
	Tamanho_Normal: 50,
	Tamanho_Altura_Atual: 50,
	Tamanho_Largura_Atual: 50,
	Tamanho_Nova_Altura: 0,
	Tamanho_Nova_Largura: 0,
	Tamanho_Alt_Ok: false,
	Tamanho_Larg_Ok: false,
	Imagem: null,
	Fechar_Exibir: function(){
		document.getElementById('Img_Foto_Visualizar_Fechar').style.top = "5px";
		document.getElementById('Img_Foto_Visualizar_Fechar').style.left = (this.Tamanho_Largura_Atual-35 ) + "px";
		document.getElementById('Img_Foto_Visualizar_Fechar').style.width = "50px";
		document.getElementById('Img_Foto_Visualizar_Fechar').style.visibility="visible";
	},
	Fechar_Ocultar: function(){
		document.getElementById('Img_Foto_Visualizar_Fechar').style.width = "1px";
		document.getElementById('Img_Foto_Visualizar_Fechar').style.top = "0px";
		document.getElementById('Img_Foto_Visualizar_Fechar').style.left = "0px";
		document.getElementById('Img_Foto_Visualizar_Fechar').style.visibility="hidden";
	},
	Fechar_Visualizador: function(){
			this.Tempo_Redim= '';
			this.Tamanho_Normal= 50;
			this.Tamanho_Altura_Atual= 50;
			this.Tamanho_Largura_Atual= 50;
			this.Tamanho_Nova_Altura= 0;
			this.Tamanho_Nova_Largura= 0;
			this.Tamanho_Alt_Ok= false;
			this.Tamanho_Larg_Ok= false;
			this.Imagem= null;
			this.Fechar_Ocultar();
			this.Img_Atual.Zerar();
			this.Fechar_Fundo_Visualizador();
			document.getElementById('Dv_Visualizar_Img').style.visibility="hidden";
			document.getElementById('Dv_Img_Visualizar_Img').style.visibility="hidden";
			document.getElementById('Img_Foto_Visualizar').style.visibility="hidden";
			document.getElementById('dv_Legenda_Foto').style.visibility = "hidden";
			document.getElementById('dv_Legenda_Foto').innerHTML = "";
			window.scroll(0,this.Posicao_Usuario_Y);
	},
	Redim_Img: function(Visu){//Imgo,tamanho_h, tamanho_w){
		this.Img_Atual.Carregar(Visu);
		this.Posicao_Usuario_Y = window.scrollY;
		document.getElementById('Img_Foto_Visualizar').style.visibility="visible";
		this.Tamanho_Nova_Altura = parseInt(this.Img_Atual.Altura);
		this.Tamanho_Nova_Largura = parseInt(this.Img_Atual.Largura);
		this.Imagem = this.Img_Atual.Url;
		this.Fundo_Visualizador();
		//this.Imagem = Imgo;
		//alert(this.Tamanho_Nova_Altura + ", " + this.Tamanho_Nova_Largura + ", " + this.Imagem)
		this.Tempo_Redim = setInterval("Fotos_Visualizar.Aumentar_Tamanho()", 30);
	},
	Aumentar_Tamanho: function (){
		//this.Tamanho_Tela = this.Tamanho_Altura_Atual
		//alert(this.Tamanho_Tela)
		this.Fechar_Ocultar();
		document.getElementById('Dv_Img_Visualizar_Img').src = "";
		document.getElementById('Dv_Img_Visualizar_Img').style.visibility="hidden";
		document.getElementById('Dv_Visualizar_Img').style.visibility="hidden";
		document.getElementById('dv_Legenda_Foto').style.visibility = "hidden";
		document.getElementById('Fotos_Visu_Carregando').style.visibility = "visible"
		//document.getElementById('Fotos_Visu_Carregando').innerHTML = Tamanho_Nova_Altura;
		if (this.Tamanho_Altura_Atual == this.Tamanho_Nova_Altura && this.Tamanho_Largura_Atual == this.Tamanho_Nova_Largura){
			this.Tamanho_Alt_Ok = true;  this.Tamanho_Larg_Ok = true;
			this.Tamanho_Altura_Atual = this.Tamanho_Nova_Altura;	this.Tamanho_Largura_Atual = this.Tamanho_Nova_Largura;
		}else{
			for (i=0;i<this.Tempo_Loop();i++){
				//this.Fundo_Visualizador();
				//ALTURA  - AUMENTAR
				if (this.Tamanho_Altura_Atual<(this.Tamanho_Nova_Altura + 1) && !this.Tamanho_Alt_Ok){
						this.Tamanho_Altura_Atual = (this.Tamanho_Altura_Atual + 1);
						if (this.Tamanho_Altura_Atual<=this.Tamanho_Nova_Altura){
						/*document.getElementById('Canto_Foto_03').style.top = (this.Tamanho_Altura_Atual+30) + "px";
						document.getElementById('Canto_Foto_04').style.top = (this.Tamanho_Altura_Atual+30) + "px";*/
						document.getElementById('Img_Foto_Visualizar').style.height = (this.Tamanho_Altura_Atual+40) + "px";
						document.getElementById('Fotos_Visu_Carregando').style.top = ((this.Tamanho_Altura_Atual/2)-16) + "px";
						//this.Posicao_Visualizador();
					}
					if (this.Tamanho_Altura_Atual>this.Tamanho_Nova_Altura){
						this.Tamanho_Alt_Ok = true;
						this.Tamanho_Altura_Atual = this.Tamanho_Nova_Altura;
						//alert(Tamanho_Altura_Atual);
					}
				}
				//ALTURA DIMINUIR
				if (this.Tamanho_Altura_Atual>(this.Tamanho_Nova_Altura - 1) && !this.Tamanho_Alt_Ok){
						this.Tamanho_Altura_Atual = (this.Tamanho_Altura_Atual - 1);
						if (this.Tamanho_Altura_Atual>=this.Tamanho_Nova_Altura){
						/*document.getElementById('Canto_Foto_03').style.top = (this.Tamanho_Altura_Atual+30) + "px";
						document.getElementById('Canto_Foto_04').style.top = (this.Tamanho_Altura_Atual+30) + "px";*/
						document.getElementById('Fotos_Visu_Carregando').style.top = 	((this.Tamanho_Altura_Atual/2)-16) + "px";
						document.getElementById('Img_Foto_Visualizar').style.height = (this.Tamanho_Altura_Atual + 40) + "px";
						//this.Posicao_Visualizador();
						} 
					if (this.Tamanho_Altura_Atual<this.Tamanho_Nova_Altura){
						this.Tamanho_Alt_Ok = true;
						this.Tamanho_Altura_Atual = this.Tamanho_Nova_Altura;
					}
				}
				// LARGURA - AUMENTAR
				if (this.Tamanho_Largura_Atual<(this.Tamanho_Nova_Largura + 1) && !this.Tamanho_Larg_Ok){
						this.Tamanho_Largura_Atual = (this.Tamanho_Largura_Atual + 1);
						if (this.Tamanho_Largura_Atual<=this.Tamanho_Nova_Largura){
							/*document.getElementById('Canto_Foto_02').style.left = (this.Tamanho_Largura_Atual+10) + "px";
							document.getElementById('Canto_Foto_04').style.left = (this.Tamanho_Largura_Atual+10) + "px";*/
							document.getElementById('Fotos_Visu_Carregando').style.left = ((this.Tamanho_Largura_Atual/2)-16) + "px";
							//alert(document.getElementById('Img_Foto_Visualizar').style.width)
							document.getElementById('Img_Foto_Visualizar').style.width = (this.Tamanho_Largura_Atual+20) + "px";
							//this.Posicao_Visualizador();
						};
					if (this.Tamanho_Largura_Atual>this.Tamanho_Nova_Largura){
						this.Tamanho_Larg_Ok = true;
						this.Tamanho_Largura_Atual = this.Tamanho_Nova_Largura;
					};
				}
				// LARGURA - AUMENTAR
				if (this.Tamanho_Largura_Atual>(this.Tamanho_Nova_Largura - 1) && !this.Tamanho_Larg_Ok){
						this.Tamanho_Largura_Atual = (this.Tamanho_Largura_Atual - 1);
						if (this.Tamanho_Largura_Atual>=this.Tamanho_Nova_Largura){
							/*document.getElementById('Canto_Foto_02').style.left = (this.Tamanho_Largura_Atual+10) + "px";
							document.getElementById('Canto_Foto_04').style.left = (this.Tamanho_Largura_Atual+10) + "px";*/
							document.getElementById('Fotos_Visu_Carregando').style.left = ((this.Tamanho_Largura_Atual/2)-16) + "px";
							document.getElementById('Img_Foto_Visualizar').style.width = (this.Tamanho_Largura_Atual+20) + "px";
							//this.Posicao_Visualizador();
						};
					if (this.Tamanho_Largura_Atual<this.Tamanho_Nova_Largura){
						this.Tamanho_Larg_Ok = true;
						this.Tamanho_Largura_Atual = this.Tamanho_Nova_Largura;
					};
				}
			}
			this.Posicao_Visualizador();
		};
		if (this.Tamanho_Larg_Ok && this.Tamanho_Alt_Ok){
				this.Parar_Tempo();
				document.getElementById('Dv_Visualizar_Img').style.height = this.Tamanho_Nova_Altura + "px";
				document.getElementById('Dv_Visualizar_Img').style.width = this.Tamanho_Nova_Largura + "px";
				document.getElementById('Dv_Img_Visualizar_Img').height = this.Tamanho_Nova_Altura;
				document.getElementById('Dv_Img_Visualizar_Img').width = this.Tamanho_Nova_Largura;
				document.getElementById('Dv_Img_Visualizar_Img').src = this.Img_Atual.Url;
				document.getElementById('Fotos_Visu_Carregando').style.visibility = "hidden";
				document.getElementById('Dv_Img_Visualizar_Img').style.visibility="visible";
				document.getElementById('dv_Legenda_Foto').style.width=(this.Tamanho_Nova_Largura-2) + "px";
				document.getElementById('dv_Legenda_Foto').innerHTML = this.Img_Atual.Legenda;
				document.getElementById('dv_Legenda_Foto').style.visibility = "visible";
				this.Fechar_Exibir();
				this.Anterior_Imagem();
				this.Proxima_Imagem();
				this.Fundo_Visualizador();
				this.Tamanho_Larg_Ok = false; this.Tamanho_Alt_Ok = false;
		};
	},
	Parar_Tempo: function(){
		window.clearInterval(this.Tempo_Redim);
	}
};