	/* Lista de meses das noticias anteriores */
	function Meses(param) {
	var strSelectIDMes = "";
	strSelectIDMes = '<select id="IDMes" style="width: 75px; color: black; font: normal 8pt tahoma, arial, helvetica, sans-serif" size="1" name="IDMes">';
	strSelectIDMes +='<option value=1 selected>Janeiro</option>'
	strSelectIDMes +='<option value=2>Fevereiro</option>'
	strSelectIDMes +='<option value=3>Março</option>'
	strSelectIDMes +='<option value=4>Abril</option>'
	strSelectIDMes +='<option value=5>Maio</option>'
	strSelectIDMes +='<option value=6>Junho</option>'
	strSelectIDMes +='<option value=7>Julho</option>'
	strSelectIDMes +='<option value=8>Agosto</option>'
	strSelectIDMes +='<option value=9>Setembro</option>'
	strSelectIDMes +='<option value=10>Outubro</option>'
	strSelectIDMes +='<option value=11>Novembro</option>'
	strSelectIDMes +='<option value=12>Dezembro</option>'
	if (param > 2010) {
		
	}
	strSelectIDMes +='</select>'
	document.getElementById("cbxMeses").innerHTML=strSelectIDMes;
	}
	/******/	
	function ShowQuiz() {
	rdOption = -1;
		for (opt=0; opt<formEnqt.radio1.length; opt++) {
			if (formEnqt.radio1[opt].checked) { 
				rdOption = opt
			}
		}
		if ((rdOption == -1) || (rdOption == 0)) {
			alert("Favor escolher uma opção antes de votar.");
			return false;
		} else {
			window.open('','showquiz','top=200,left=200,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=400,height=230');
			return true;
		}
	}

	/*** Função de Popup ***/
	function na_open_window(name, url, left, top, width, height, toolbar, menubar, statusbar, scrollbar, resizable)
	{
	  toolbar_str = toolbar ? 'yes' : 'no';
	  menubar_str = menubar ? 'yes' : 'no';
	  statusbar_str = statusbar ? 'yes' : 'no';
	  scrollbar_str = scrollbar ? 'yes' : 'no';
	  resizable_str = resizable ? 'yes' : 'no';
	  window.open(url, name, 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
	}

	
	function ClosePanel(arg) {
		document.getElementById(arg).style.display = 'none'
	}
	
/* Header - Função de Rotação da Imagem */

var SlideShowSpeed = 9000;// Set the slideshow speed (in milliseconds)
var CrossFadeDuration = 6;// Set the duration of crossfade (in seconds)
var Picture = new Array(); // don't change this
Picture[1]  = 'bannerhdr/enseada_topo.jpg';
Picture[2]  = 'bannerhdr/cigarras_topo.jpg';
Picture[3]  = 'bannerhdr/ruadapraia_topo.jpg';
Picture[4]  = 'bannerhdr/canalss_vela_topo.jpg';
Picture[5]  = 'bannerhdr/cigarras_topo.jpg';
Picture[6]  = 'bannerhdr/santiago_topo.jpg';
Picture[7]  = 'bannerhdr/saofrancisco_topo.jpg';


var tss;
var iss;
var jss = 1;
var pss = Picture.length-1;

var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}

function runSlideShow(){
if (document.all){
document.images.PictureBox.style.filter="blendTrans(duration=2)";
document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply();}
document.images.PictureBox.src = preLoad[jss].src;
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
jss = jss + 1;
if (jss > (pss)) jss=1;
tss = setTimeout('runSlideShow()', SlideShowSpeed);
}

