//Layer flutuante na home page
function close_time() {
setTimeout('close_div ()', 10000);
}
function close_div () {
camada_alvo=document.getElementById? document.getElementById("news") : document.all.news
camada_alvo.style.visibility="hidden";
}

//Multi submites para um mesmo field
var x_form;
	function ch_form() {
		if (x_form == '1') {
			document.f_name.action = 'http://www.google.com.br/search';
		} else if (x_form == '2') {
			document.f_name.action = 'http://www.priberam.pt/dlpo/default.asp';
		} else if (x_form == '3') {
			document.f_name.action = 'http://br.babelfish.yahoo.com';
		}
	}

//Clique em um link: mostra/oculta a div
function onoff(id) {
var el = document.getElementById(id);
el.style.display = (el.style.display=="") ? "none" : "";
}

//Abrir janela popup
function abrir(URL) {

   var width = 550;
   var height = 450;

   var left = 170;
   var top = 80;

window.open(URL,'', 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=yes, status=no, toolbar=no, location=no, directories=no, menubar=no, resizable=no, fullscreen=no');
}

//Abrir em nova janela o item escolhinho numa caixa de seleção
function mudapagina(combo)
{
var endereco = combo.value;
if (endereco != "#")
{novapagina = window.open(endereco);
}
}
//Abre popup e mostra os signos
function hv(signo)
{
url="http://www.horoscopovirtual.com.br/horoscopo/?signo=" + signo + "&parceiro=supersitesdaweb";
window.open(url,"hv", "resizable=yes,toolbar=no,location=no,directories=no,status=no, menubar=no,toolbar=no,scrollbars=no,maximized=yes,copyhistory=no,width=370,height=405");
}