// JavaScript Document

	function Envia()
	{

	    if (document.Frm2.cb_mes.value != '0' || document.Frm2.cb_cidade.value != '0' || document.Frm2.cb_promotor.value != '0' || document.Frm2.cb_setor.value != '0')
		   {
		     document.Frm2.action = 'resultado.php?m=' + document.Frm2.cb_mes.value +  '&c=' + document.Frm2.cb_cidade.value  +  '&a=' + document.Frm2.cb_ano.value +  '&p=' + document.Frm2.cb_promotor.value +  '&s=' + document.Frm2.cb_setor.value+  '&rg_mes=' + document.Frm2.rg_mes.value;
		     document.Frm2.submit();
			 
		   }
		   else
		   {
		     alert('Please select a MONTH or a city or a promoter or a sector to start the search. Thank you!');
		   }	 
	}


	
	<!-- desabilita o botao da direita do mouse 
	var mensagem="";
	function clickIE() {if (document.all) {(mensagem);return false;}}
	function clickNS(e) {if 
	(document.layers||(document.getElementById&&!document.all)) {
	if (e.which==2||e.which==3) {(mensagem);return false;}}}
	if (document.layers) 
	{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
	else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}
	document.oncontextmenu=new Function("return false")
	// --> 

