<!--
function checkBrowser(){
	this.ver=navigator.appVersion
	this.dom=document.getElementById?1:0
	this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0;
	this.ie4=(document.all && !this.dom)?1:0;
	this.ns5=(this.dom && parseInt(this.ver) >= 5) ?1:0;
	this.ns4=(document.layers && !this.dom)?1:0;
	this.bw=(this.ie5 || this.ie4 || this.ns4 || this.ns5)
	return this
}
bw=new checkBrowser()

function showHideOpiniao(div,nest){
	obj=bw.dom?document.getElementById(div).style:bw.ie4?document.all[div].style:bw.ns4?nest?document[nest].document[div]:document[div]:0;
		if(obj.display=='block') {
	obj.display='none';
	document.opiniao.src = "imagens/botaopiniao.jpg"; 
	}
		else {
	obj.display='block';
	document.opiniao.src = "imagens/botaopiniaoover.jpg"; 
	}

}

function showHide(div,nest){
	obj=bw.dom?document.getElementById(div).style:bw.ie4?document.all[div].style:bw.ns4?nest?document[nest].document[div]:document[div]:0;
		if(obj.display=='block') {
	obj.display='none';
	}
		else {
	obj.display='block';
	}

}

function preloadImages() { //v1.0
	if(document.images){ 
var d = document.fundopaginaimg
var dd = document.botaopiniaoimg
		d=new Image; 
		d.src='imagens/fundopaginasover.jpg';
		dd=new Image; 
		dd.src='imagens/botaopiniaoover.jpg';
	}
}

function mudarFundo(id) { //v3.0
	obj=bw.dom?document.getElementById(id).style:bw.ie4?document.all[id].style:bw.ns4?nest?document[nest].document[id]:document[id]:0;
	
	if (obj.backgroundImage == 'url(imagens/fundopaginasover.jpg)'){
		obj.backgroundImage = 'url(imagens/fundopaginas.jpg)';
	}
	else{
		obj.backgroundImage = 'url(imagens/fundopaginasover.jpg)';
	}
}

function jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

   function PopupPic(sPicURL, sPicLegend) { 
     window.open('galeria_img.asp?'+sPicURL+'&'+sPicLegend, 'Foto', 'resizable=0,HEIGHT=200,WIDTH=200'); 
   } 
//-->