function enviarFaleconosco(){
	destino		= document.getElementById("destino").value;
	nome 		= document.getElementById("nomeb").value;
	email 		= document.getElementById("emailb").value;
	assunto 	= document.getElementById("assunto").value;
	mensagem	= document.getElementById("mensagem").value;

	if(destino=='' ||  nome=='' ||  email=='' ||  assunto=='' ||  mensagem==''){
		alert ('TODOS OS CAMPOS SÃO OBRIGATÓRIOS!!!!');		
	}else{
		document.contato.submit();	
	}	
}
function votar(){
	document.frm_enquete.action="index.php?pag=enquete&escolha=votar";
	document.frm_enquete.submit();
}
// JavaScript Document
function abrirSubmenus(subs){
	estado = document.getElementById(subs).style.display;	
	if(estado=="block"){
		document.getElementById(subs).style.display="none";		
	}else{
		document.getElementById(subs).style.display="block";	
	}	
}
function fecharSubmenus(subs){
	document.getElementById(subs).style.display="none";	
}
function abrir(URL) {
   var width = 580;
   var height = 460;
   var left = 99;
   var top = 99;
   window.open(URL,'Teste', 'width='+width+', height='+height+', top='+top+', left='+left+', scrollbars=yes, status=no, toolbar=no, location=no, directories=no, menubar=no, resizable=no, fullscreen=no');
}
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {
	if (document.layers||(document.getElementById&&!document.all)) {
		if (e.which==2||e.which==3) {(message);return false;}
	}
}
function disableselect(e){
	return false
}
function reEnable(){
	return true
}
function escreverData(){
	var message="";
	if (document.layers) 
	{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
	else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
	document.oncontextmenu=new Function("return false")
	//if IE4+
	document.onselectstart=new Function ("return false")
	//if NS6
	if (window.sidebar){
	/*document.onmousedown=disableselect
	document.onclick=reEnable*/
	}
	var months=new Array(13);
	months[1]="Janeiro";
	months[2]="Fevereiro";
	months[3]="Março";
	months[4]="Abril";
	months[5]="Maio";
	months[6]="Junho";
	months[7]="Julho";
	months[8]="Agosto";
	months[9]="Setembro";
	months[10]="Outubro";
	months[11]="Novembro";
	months[12]="Dezembro";
	var time=new Date();
	var lmonth=months[time.getMonth() + 1];
	var date=time.getDate();
	var year=time.getYear();
	if (year < 2000)    // Y2K Fix, Isaac Powell
	year = year + 1900; // http://onyx.idbsu.edu/~ipowell
	document.write("<right>" + date + " de ");
	document.write(lmonth + " de " + year + "</right>");
}