// ----- FOTO ----- //

function amplia(img){
	if(arguments[2]!="" && arguments[3]!=""){
		width=arguments[2];
		height=arguments[3];
	}
	else{
		width=600;
		height=600;
	}
	
	if(arguments[1] != "")
		title = arguments[1];
	else
		title = "Verão Abril";

	janela = window.open('','foto','width='+width+',height='+height+',top=0,left=0,scrollbars=no,status=no,menubars=no,location=no');
	janela.document.open();
	janela.document.write('<html><head><'+'scri'+'pt>function resize() {i=20; if (navigator.appName == \'Netscape\') i=5;if (document.images[0]) window.resizeTo(document.images[0].width +30, document.images[0].height+60-i);self.focus();}</s'+'cript'+'>');
	janela.document.write('<title>'+title+'</title>');
	janela.document.write('</head><body topmargin=0 leftmargin=0 marginwidth=0 rightmargin=0 bgcolor="#000000" onload="resize();">');
	janela.document.write('<div align=center><img src="'+img+'" alt="'+title+'" title="'+title+'" /></div>');
	janela.document.write('</body></html>');
	janela.document.title=title;
	janela.document.close();
	janela.focus()
}

// - FIM FOTO ----- //

// ----- GALERIA ----- //

function galeria_troca(id)
{
	obGaleria = GetObject('galeria_esquerda');
	if(typeof(obGaleria) == "object")
	{
		if(typeof(galeria_fotos[id]) == "object")
		{
			html = '';
			if(galeria_fotos[id]['credito'] != "" && galeria_fotos[id]['credito'] != "&nbsp;"){
			 html += '<h1 style="font-size: 10px">'+galeria_fotos[id]['credito']+'</h1>';
			}
			html += '<h2><img src="/site/'+galeria_fotos[id]['imagem_grande']+'" alt="" /></h2>';
			if(galeria_fotos[id]['texto'] != "" && galeria_fotos[id]['texto'] != "&nbsp;"){
			 html += '<h3>'+galeria_fotos[id]['texto']+'</h3>';
		  }
			if(galeria_fotos[id]['legenda'] != "" && galeria_fotos[id]['legenda'] != "&nbsp;"){
			 html += '<p>'+galeria_fotos[id]['legenda']+'</p>';
		  }
			obGaleria.innerHTML = html;
		}
	}
	return true;
}

// - FIM GALERIA ----- //

// ----- POPUP ----- //
function abre_popup(endereco){
	if(arguments[2]!="" && arguments[3]!=""){
		width=arguments[1];
		height=arguments[2];
	}
	else{
		width=750;
		height=450;
	}

	janela = window.open(endereco,'popup','width='+width+',height='+height+',top=0,left=0,scrollbars=no,status=no,menubars=no,location=no');
	janela.focus()
}

// - FIM POPUP ----- //