<!--
// === Ricerca ===
function cerca(){
var gourl;
var query = document.forms['nncerca'].q.value;
if (query == ""){
alert("Specifica cosa cercare!");
}else{
if (document.forms['nncerca'].w[1].checked) { gourl = "http://www.godado.it/engine.php?key="; }else{ gourl = "/search.php?q="; }
top.location.href = gourl + escape(query);
}}
function avviaricerca(){cerca();return false;}

// === Preload immagine di sfondo ===
nnbtover = new Image(); 
nnbtover.src = "img/bg_evid.gif";

// === Stampo consigli sul Needboard ===
function nbmsg(str)
{
	var nbbox = document.getElementById("NBBOX").className = "needboardconsigli";
	var nbmsg = document.getElementById("NBMSG").innerHTML = str;
}

// === user-cp ===
function ucpmostra(ID)
{
	for (i=1; i<4; i++)
	{
		if (ID == i) { document.getElementById('UCP_' + i).style.display='block'; document.getElementById('UCPBT_' + i).className='attivo'; }
		else { document.getElementById('UCP_' + i).style.display='none'; document.getElementById('UCPBT_' + i).className=''; }
	}
}
//-->