
function FlashLinks(Secao) {
	
	var URL = '', NovaJanela = ''; 
	
	switch(Secao.toLowerCase()){
		case 'fhc':
			var URL = '/Agenda/'; break;
			
		case 'inblog':
			var URL = 'http://tucanojovem.wordpress.com/'; 
			NovaJanela = 'Sim'; 
			break;
			
		case 'insight':
			var URL = 'http://www.insightpublicidade.com.br/'; 
			NovaJanela = 'Sim'; 
			break;
			
		case 'pulso':
			var URL = 'http://www.pulsocomunicacao.com.br/Pulso2008/'; 
			NovaJanela = 'Sim'; 
			break;
	}
	
	if (NovaJanela == 'Sim') { window.open(URL); } 
	else { window.document.location.href = URL; }
}

