function showQdtBanners(qdtBanners){
	if(qdtBanners>0){
		//alert("temos "+qdtBanners+" banners no xml");
	}else{
		if(document.getElementById('idBoxBannerInt')!=null){
			document.getElementById('idBoxBannerInt').style.display = 'none';
		}
	}

}
function showActionBanners(action,identificador,href,target){
	if(action=="click"){
		document.getElementById("ifr_banner").src = "../_include/click_banner_act.php?idlnk="+identificador+"&click=1";
		setTimeout("redirecionaBanner('"+href+"','"+target+"');",1000);
	}else{
		document.getElementById("ifr_banner").src = "../_include/click_banner_act.php?idlnk="+identificador;
	}
}

function redirecionaBanner(href,target){
	if(target=="_blank"){
		janela = window.open(href, 'popup_banner');
	}else{
		document.location.href = href;
	}
}

function openCadastro(){
	width = 450;
	height = 550;
	largura = screen.width;
	altura = screen.height;
	posX = (largura - width) / 2;
	posY = (altura - height) / 2;
	var janela = null;
	janela = window.open("http://www.sociesc.com.br/pt/fale-conosco/cadastro.html", "cadastro",'left='+posX+',top='+posY+',height='+height+',width='+width);
	janela.focus();
}