Fatti restituire un false oppure un true:
codice:
function verifica()
{
 if (document.nome.value=="") {
  alert ("vuoto");
  return false;
 }
 return true;
}

function altra() {
 if(verifica()) alert("pieno") 
}
ps: la sintassi che usi nel pulsante (button o submit? :master: ) e' sbagliata... ma quella giusta dipende dal contesto.

ciao