function abre(site) 
{ 
	window.location = site; 
	return false;
}

function exibeTela(t)
{
	t = t - 1;
	// Oculta todos
	var telas = getElementsByClassName('tela');
	var total = telas.length;
	for(te = 0; te < total; te++)
	{
		telas[te].style.display = 'none';
	}
	
	// Exibe o certo
	telas[t].style.display = 'block';		
}
