
function isEmailAddr(email)
{
  var result = false
  var theStr = new String(email)
  var index = theStr.indexOf("@");
  if (index > 0)
  {
    var pindex = theStr.indexOf(".",index);
    if ((pindex > index+1) && (theStr.length > pindex+1))
	result = true;
  }
  return result;
}


function FormValidatorPesquisa(theForm)
{

if (theForm.cd_marca.value == "")
{
alert("Por favor seleccione um \"Marca\".");
theForm.cd_marca.focus();
return (false);
}
if (theForm.cd_modelo.value == "")
{
alert("Por favor seleccione um \"Modelo\".");
theForm.cd_modelo.focus();
return (false);
}	
return (true);
}
