// JavaScript Document

function AbrirLightbox(url,caption,width,height) {
	window.open(url,'popup','width='+width+',height='+height+',top='+(window.screen.height/2-height/2)+',left='+(window.screen.width/2-width/2)+', toolbar=no, menubar=no, status=no, location=no, resizable=no')
}
function hotsite(endereco,largura,altura) {
		window.open(endereco,'popup','width='+largura+',height='+altura+',top='+(window.screen.height/2-altura/2)+',left='+(window.screen.width/2-largura/2)+', toolbar=no, menubar=no, status=no, location=no, resizable=no')
}
	
function fecharBanner() {
	var rs = document.getElementById("Banner");
	rs.style.visibility = "hidden";
	rs.style.display = "none";
}