 function hidestatus(){
window.status=''
return true
}

if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)

document.onmouseover=hidestatus
document.onmouseout=hidestatus

function funForm(varAcao){
	if(varAcao=="abre"){
		document.getElementById("form").style.display = "block";
		document.getElementById("abreForm").style.display = "none";
		document.getElementById("fechaForm").style.display = "block";
	}
	if(varAcao=="fecha"){
		document.getElementById("form").style.display = "none";
		document.getElementById("abreForm").style.display = "block";
		document.getElementById("fechaForm").style.display = "none";
	}
}

function funMenu20Anos(varID){
	var varTodos = ['Opiniao','Fotos'];
	for(i=0;i<varTodos.length;i++){
		if (i == varID){
			document.getElementById("conteudo"+varTodos[i]).style.display = "block";
			document.getElementById("menu"+varTodos[i]).style.backgroundImage = "url(_imgs/marcador"+varTodos[i]+".gif)";
		} else {
			document.getElementById("conteudo"+varTodos[i]).style.display = "none";
			document.getElementById("menu"+varTodos[i]).style.backgroundImage = "url(none)";
		}
	}
}


function MM_setTextOfLayer(objName,x,newText) { //v3.0
  if ((obj=MM_findObj(objName))!=null) with (obj)
    if (navigator.appName=='Netscape') {document.write(unescape(newText)); document.close();}
    else innerHTML = unescape(newText);
}

function MM_findObj(n, d) { //v3.0
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document); return x;
}

function funMudaFotoAlbum(varID,nome,credito,legenda){
	var varTodos = document.getElementsByName("thumbnailAlbum");

	for(i=0;i<varTodos.length;i++){
		if (i == varID){
			varTodos[i].style.backgroundImage = "url(_imgs/marcadorAtivo.gif)";
		} else {
			varTodos[i].style.backgroundImage = "url(_imgs/marcadorNaoAtivo.gif)";
		}
	}
	document.fotoAlbum.src = "../x_arqs/"+nome;
	MM_setTextOfLayer('TextoFoto','',''+legenda)
	MM_setTextOfLayer('credito','','Crédito: '+credito)
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}













