// JavaScript Document
function goCountry(strUrl){
	if(strUrl!=''){
		window.open('http://'+strUrl,'_blank');
	}
}

function enviarbusca(){
	strBusca = document.getElementById('buscadotopo').value;
	
	if(strBusca!=''){
		window.open('https://www.samsung.com.br/wcg/noticia/?bid='+strBusca,'_blank');
	}
}

function exibir(str_fnc){
	if(document.getElementById('medalhistas')){
		document.getElementById('medalhistas').style.visibility = str_fnc;
	}
}
