<!--
//##########################################################################
function valida_respostaIn(){
	msg = "Todos os campos são de preenchimento obrigatório"
	with(document.form1){
		if (corpo.value.length == 0){
			alert(msg);
			corpo.focus();
			return false;
		}
	}
	return true;
}
//##########################################################################
function valida_topicoIn(){
	msg = "Todos os campos são de preenchimento obrigatório"
	with(document.form1){
		if (titulo.value.length == 0){
			alert(msg);
			titulo.focus();
			return false;
		}
		if (corpo.value.length == 0){
			alert(msg);
			corpo.focus();
			return false;
		}
	}
	return true;
}
//##########################################################################
function valida_usuarioIn(){
	msg = "Todos os campos são de preenchimento obrigatório"
	with(document.form1){
		if (nome.value.length == 0){
			alert(msg);
			nome.focus();
			return false;
		}
		if (email.value.length == 0){
			alert(msg);
			email.focus();
			return false;
		}
		if (cidade.value.length == 0){
			alert(msg);
			cidade.focus();
			return false;
		}
		if (estado.value.length == 0){
			alert(msg);
			estado.focus();
			return false;
		}
		if (senha.value.length == 0){
			alert(msg);
			senha.focus();
			return false;
		}
	}
	return true;
}
//##########################################################################
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//##########################################################################
//-->