function validaTrabalhe(obj)
{

	if (obj.elements['nome'].value == '')
	{
		alert('Preencha o campo nome.');
		obj.elements['nome'].focus();
		return false;
	}
	if (obj.elements['email'].value == '')
	{
		alert('Preencha o campo email.');
		obj.elements['email'].focus();
		return false;
	}
	if (obj.elements['profissao'].value == "") {
		alert('Preencha o campo profissão.');
		obj.elements['profissao'].focus();
		return false;
	}
	if (obj.elements['data'].value == "") {
		alert('Preencha o campo data.');
		obj.elements['data'].focus();
		return false;
	}
	if (obj.elements['civil'].value == "") {
		alert('Preencha o campo estado civil.');
		obj.elements['civil'].focus();
		return false;
	}
	if (obj.elements['telefone'].value == "") {
		alert('Preencha o campo telefone.');
		obj.elements['telefone'].focus();
		return false;
	}
	if (obj.elements['bairro'].value == "") {
		alert('Preencha o campo bairro.');
		obj.elements['bairro'].focus();
		return false;
	}
	if (obj.elements['cidade'].value == "") {
		alert('Preencha o campo cidade.');
		obj.elements['cidade'].focus();
		return false;
	}
	if (obj.elements['objetivo'].value == "") {
		alert('Preencha o campo objetivo.');
		obj.elements['objetivo'].focus();
		return false;
	}
	if (obj.elements['area'].value == "") {
		alert('Preencha o campo area.');
		obj.elements['area'].focus();
		return false;
	}
	if (obj.elements['curso'].value == "") {
		alert('Preencha o campo curso.');
		obj.elements['curso'].focus();
		return false;
	}
	if (obj.elements['instituicao'].value == "") {
		alert('Preencha o campo instituicao.');
		obj.elements['instituicao'].focus();
		return false;
	}
	if (obj.elements['experiencia'].value == "") {
		alert('Preencha o campo experiencia.');
		obj.elements['experiencia'].focus();
		return false;
	}
	return true;
}

function validaIMC(obj)
{
	if (obj.elements['peso'].value == '')
	{
		alert('Preencha o campo peso.');
		obj.elements['peso'].focus();
		return false;
	}
	if (obj.elements['altura'].value == '')
	{
		alert('Preencha o campo altura.');
		obj.elements['altura'].focus();
		return false;
	}
	return true;
}

function validaFale(obj)
{

	if (obj.elements['nome'].value == '')
	{
		alert('Preencha o campo nome.');
		obj.elements['nome'].focus();
		return false;
	}
	if (obj.elements['email'].value == '')
	{
		alert('Preencha o campo email.');
		obj.elements['email'].focus();
		return false;
	}	
	if (obj.elements['assunto'].value == "") {
		alert('Preencha o campo assunto.');
		obj.elements['assunto'].focus();
		return false;
	}
	if (obj.elements['mensagem'].value == "") {
		alert('Preencha o campo mensagem.');
		obj.elements['mensagem'].focus();
		return false;
	}

	return true;

}

function validaCadastro(obj)
{

	if (obj.elements['nome'].value == '')
	{
		alert('Preencha o campo nome.');
		obj.elements['nome'].focus();
		return false;
	}
	if (obj.elements['email'].value == '')
	{
		alert('Preencha o campo email.');
		obj.elements['email'].focus();
		return false;
	}
	if (obj.elements['profissao'].value == "") {
		alert('Preencha o campo profissão.');
		obj.elements['profissao'].focus();
		return false;
	}
	if (obj.elements['data'].value == "") {
		alert('Preencha o campo data.');
		obj.elements['data'].focus();
		return false;
	}
	if (obj.elements['rg'].value == "") {
		alert('Preencha o campo rg.');
		obj.elements['rg'].focus();
		return false;
	}	
	if (obj.elements['cpf'].value == "") {
		alert('Preencha o campo cpf.');
		obj.elements['cpf'].focus();
		return false;
	}
	if (obj.elements['telefone'].value == "") {
		alert('Preencha o campo telefone.');
		obj.elements['telefone'].focus();
		return false;
	}
	if (obj.elements['bairro'].value == "") {
		alert('Preencha o campo bairro.');
		obj.elements['bairro'].focus();
		return false;
	}
	if (obj.elements['cidade'].value == "") {
		alert('Preencha o campo cidade.');
		obj.elements['cidade'].focus();
		return false;
	}
	if (obj.elements['estado'].value == "") {
		alert('Preencha o campo estado.');
		obj.elements['estado'].focus();
		return false;
	}
	return true;
}

function statushide(){
	window.status="Corporis Sanu";
	return true;
}

if (document.layers)
	document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);

document.onmouseover=statushide;
document.onmouseout=statushide;