function notNull(obj)
{
	if(obj.value.length==0)
	{
		alert('O campo ' + obj.name + ' é obrigatório');
		obj.focus();
		return false;
	}
	else
		return true;
}

function validaFormContato(frm)
{
	return  (notNull(frm.nome) && notNull(frm.cidade)  && notNull(frm.fone) && notNull(frm.email) && notNull(frm.mensagem))
}


