<!--
function chkForm() {
	var e = "";
  	var c = document.getElementById("cad");
	
	var ar = true;
	var cc = true;
	var ce = true;
	
	// public area
	if(c.who.value == "tm2") {
  		e += (c.nome.value == "") ? "O campo NOME é obrigatório!\r\n" : "";
  		e += (c.email.value == "") ? "O campo E-MAIL é obrigatório!\r\n" : "";
		
		for (i = 0; i < c.area.length; i++){
			if(c.area[i].checked){
				ar = false;
			}
		}
		e += (ar) ? "O campo ÁREA DE INTERESSE é obrigatório!\r\n" : "";
		
		var inc = "";
		for (i = 0; i < c.comoconhe.length; i++){
			if(c.comoconhe[i].checked){
				inc += c.comoconhe[i].value+",";
				cc = false;
			}
			
		}
		e += (cc) ? "O campo COMO CONHECEU é obrigatório!\r\n" : "";
		if(inc != ""){
			c.comoc.setAttribute('value', inc);
		}
		
		inc = "";
		for (i = 0; i < c.comoenvol.length; i++){
			if(c.comoenvol[i].checked){
				inc += c.comoenvol[i].value+",";
				ce = false;
			}
		}
		e += (ce) ? "O campo COMO QUER SE ENVOLVER é obrigatório!\r\n" : "";
		if(inc != ""){
			c.comoe.setAttribute('value', inc);
		}
		
		e += (c.texto.value == "") ? "O campo TEXTO é obrigatório!\r\n" : "";
	}

	if (e == "") {
		// c.submit();
		return true;
	} else {
		window.alert(e);
		return false;
	}
}
function chkNum(oe) {
	if(oe.keyCode>=48&&oe.keyCode<=57||oe.which>=48&&oe.which<=57) { 
		return true; 
	} else if (oe.keyCode==8||oe.keyCode==9||oe.which==8||oe.which==9) {
    	return true; 
  	} else {
    	return false;
  	}
}
//-->