function nomecor() {
var camponome=document.contato.nome.value
if(camponome.value==""||camponome.length<8){
document.getElementById("name").innerHTML="<strong><font color=red>Por favor informe seu nome completo.</font></strong>";
}
else{
document.getElementById("name").innerHTML="<strong><font color=green>Ok!</font></strong>";
}
}
function emailcor(){
var campoemail=document.contato.email.value
if(campoemail.value==""||campoemail.indexOf('@')=="-1"||campoemail.indexOf('.')=="-1"){
document.getElementById("mail").innerHTML="<strong><font color=red>Informe seu e-mail corretamente</font></strong>";
}
else{
document.getElementById("mail").innerHTML="<strong><font color=green>Ok!</font></strong>";
}
}

function assuntocor(){
var ass=document.contato.assunto.value
if(ass.value==""||ass.length<5){
document.getElementById("assuntos").innerHTML="<strong><font color=red>Informe uma senha, min&iacute;mo 5 caracteres</font></strong>";
}
else{
document.getElementById("assuntos").innerHTML="<strong><font color=green>Ok!</font></strong>";
}
}

function validar(){
var campoemail=document.contato.email.value;
var camponome=document.contato.nome.value;
var ass=document.contato.assunto.value;


if(camponome.value==""||camponome.length<8){
alert('Informe seu nome completo')
document.getElementById("name").innerHTML="<strong><font color=red>Por favor digite seu nome completo</font></strong>";
document.contato.nome.focus();document.getElementById("name").style.background="#33A";
return false;
}
if(campoemail.value==""||campoemail.indexOf('@')=="-1"||campoemail.indexOf('.')=="-1"){
alert('Preencha o campo de email')
document.getElementById("mail").innerHTML="<strong><font color=red>Este não parece ser um e-mail válido. Confira!</font></strong>";
document.contato.nome.focus();document.getElementById("mail").style.background="#33A";
document.contato.email.focus();
return false;
}
if(ass.value==""||ass.length<5){
alert('Preencha o campo senha')
document.getElementById("assuntos").innerHTML="<strong><font color=red>Verifique o mínimo de caracters exigido.</font></strong>";
document.contato.nome.focus();document.getElementById("assuntos").style.background="#33A";
document.contato.assunto.focus();
return false;
}
else{
document.getElementById("msgs").innerHTML="<strong><font color=green>Ok</font></strong>";
document.contato.nome.focus();document.getElementById("msgs").style.background="#FFF";
}

}

