///////////////////////////////////////////////////////////
//// lightBox /////////////////////////////////////////////
///////////////////////////////////////////////////////////
function showLightbox(paramImage){
	window.top.document.getElementById("imagemLightbox").src = "/upload/hotsites/pais2008/"+paramImage;
	window.top.document.getElementById("containerLightbox").style.display = "";
	window.top.document.getElementById("backgroundLightBox").style.display = "";
}

function hideLightbox(){
	window.top.document.getElementById("imagemLightbox").src = "";
	window.top.document.getElementById("containerLightbox").style.display = "none";
	window.top.document.getElementById("backgroundLightBox").style.display = "none";
}

