function checa()
{
	if (window.document.fEditar.strNome.value=='')
	{
		alert("Preencha o nome");
		window.document.fEditar.strNome.focus();
		return false;
	}
	if (window.document.fEditar.strEmail.value == "")
	{
		alert("Preencha o email");
		window.document.fEditar.strEmail.focus();
		return false;
	}
	if (!isEmailValid(document.fEditar,'strEmail'))
	{
		alert("Preencha corretamente o email");
		window.document.fEditar.strEmail.focus();
		return false;
	}
	if (window.document.fEditar.strSenha.value == "")
	{
		alert("Preencha a senha");
		window.document.fEditar.strSenha.focus();
		return false;
	}	
	if (window.document.fEditar.strSenhaConfirma.value == "")
	{
		alert("Preencha a confirmação da senha");
		window.document.fEditar.strSenhaConfirma.focus();
		return false;
	}
	if (window.document.fEditar.strSenha.value != window.document.fEditar.strSenhaConfirma.value)
	{
		alert("A senha não confere");
		window.document.fEditar.strSenha.value = "";
		window.document.fEditar.strSenhaConfirma.value = "";
		window.document.fEditar.strSenha.focus();
		return false;
	}
	if (window.document.fEditar.strDDD.value == "")
	{
		alert("Preencha o DDD");
		window.document.fEditar.strDDD.focus();
		return false;
	}
	if (window.document.fEditar.strFone.value == "")
	{
		alert("Preencha o telefone");
		window.document.fEditar.strFone.focus();
		return false;
	}
	if (!window.document.fEditar.bolAceito.checked)
	{
		alert("Para enviar é necessário aceitar os termos");
		window.document.fEditar.bolAceito.focus();
		return false;
	}
	return true;
}

function enviar()
{
	if ( checa() )
	{
		window.document.fEditar.submit();
	}
}

function Foto()
{
	f = window.open ("/includes/foto.asp","popupFoto","width=400,height=100,top=200,left=200");
	f.focus();
}

function ReloadFoto(path)
{
	strPath = "/upload/" + path
	window.document.getElementById("foto").src = strPath;
	window.document.getElementById("strFoto").value = strPath;
}