// JavaScript Document
function abre_zoom(id){
	document.getElementById('fundo_preto').style.display = '';
	document.getElementById("fundo_preto").style.height = getPageSize()+'px';

	document.getElementById(id).style.display = '';
}
function fecha_zoom(id){
	document.getElementById('fundo_preto').style.display = 'none';
	document.getElementById(id).style.display = 'none';
}
function getPageSize(){
	 return document.documentElement.scrollHeight;
	 //documentWidth=(window.innerWidth || self.innerWidth || document.body.offsetWidth);
}

