// centraliza uma imagem ao centro de um box
function positionCenter( img, box ) {
	var img = document.getElementById(img);
	var box = document.getElementById(box).offsetHeight;
	
	img.style.marginTop = ( box / 2 ) - ( img.offsetHeight / 2 ) + 'px';
}

// abre uma página em uma nova janela
function goURL( endereco ) {
	window.open( endereco, "_blank");
}