function critica() {
	nome=document.contato.realname.value
	
	if (nome == "") {
	alert("Digite seu Nome!!!")
	return false
	}

	if(isNaN(nome) == false) {
	alert("Nome Inválido!!! Digite seu Nome corretamente!!!")
	return false
	}

	if (document.contato.replyto.value=="") { 
	alert("Preencha seu email!!!"); 
	document.contato.replyto.focus(); 
	return false;
	}

	if (document.contato.texto.value=="") { 
	alert("Escreva sua mensagem!!!"); 
	document.contato.texto.focus(); 
	return false;
	}
return true;
	}
	
	
	function english() {
	nome=document.contato.realname.value
	
	if (nome == "") {
	alert("Type Your Name!!!")
	return false
	}

	if(isNaN(nome) == false) {
	alert("Don't Use Numbers In Your Name!!!")
	return false
	}

	if (document.contato.replyto.value=="") { 
	alert("Type Your Email!!!"); 
	document.contato.replyto.focus(); 
	return false;
	}

	if (document.contato.texto.value=="") { 
	alert("Type Your Message!!!"); 
	document.contato.texto.focus(); 
	return false;
	}
return true;
	}
