// JavaScript Document
function enviamapasite() {
	var mapasite = window.document.mapasite.cbomapa2.value;
	if (mapasite!=''){
			window.location.href = mapasite;
			return false;
			}else{
			return false;
		}
}
function barra(id) {
	var div = document.getElementById(id);
		if (div.style.display == "nome") {
			div.style.display = "block";
		} else {
			div.style.display = "none";
		}
}

function BuOver(elem)
{
elem.style.backgroundColor = "#dd6f00";
elem.style.color = "#ffffff";
elem.style.cursor = 'hand'
}

function BuOut(elem)
{
elem.style.backgroundColor = "#e6b700";
elem.style.fontcolor = "#ffffff";
}

function BuDown(elem)
{
elem.style.backgroundColor = "#ff0000";
elem.style.color = "#EEEEEE";
}