	<!--
	
	/* SELECIONA NOTICIA POR MES */
	function select_cidade(strValue)
	{
		str = strValue.options[strValue.selectedIndex].value;
		// document.forms[0].action = 'sys_admin_functions.php?action=listcidadedelete&uid=' + str;
		document.forms[0].action = 'admin.php?sub=cobertura&action=listrepresentantes&uid=' + str;
		document.forms[0].submit();
	}
	function select_month(strValue)
	{
		str = strValue.options[strValue.selectedIndex].value;
		strReplace = str.replace(" ","");
		
		document.forms[0].action = 'index.php?sub=news&month=' + str;
		document.forms[0].submit();
	}
	
	function select_segmento(strValue)
	{
		str = strValue.options[strValue.selectedIndex].value;
		strReplace = str.replace(" ","");
		
		document.forms[0].action = 'index.php?sub=segmentos&uid=' + str;
		document.forms[0].submit();
	}
	
	function select_uf(strValue)
	{
		str = strValue.options[strValue.selectedIndex].value;
		strReplace = str.replace(" ","");
		
		document.forms[0].action = 'index.php?sub=cobertura&uid=' + str;
		document.forms[0].submit();
	}
	
	/*function check_fields(strField1,strField2)
	{
		field1 = document.getElementById(strField1).value;
		field2 = document.getElementById(strField2).value;
		
		alert(field2); return false;
		
		//if (field1 == '') { alert('Favor preencher o título  '); return false; }
		//else (field2 == '') { alert('Favor preencher corpo da notícia  '); return false; }
	}*/
	
	//-->