Mi spiego meglio anche se sono certo sia una scemenza:

Codice PHP:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<
html xmlns="http://www.w3.org/1999/xhtml">
<
head>
    <
meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <
title>Documento senza titolo</title>
</
head>

<
body>
    <
form name="form_principale" method="post" enctype="multipart/form-data" action="">
    <
input type="button" nome="pulsante1" value="valore1" onclick="document.form_principale.pulsante2.disabled = true;" />
    <
input type="button" nome="pulsante2" value="valore2" onclick="document.form_principale.pulsante1.disabled = true;" />
    </
form>
</
body>
</
html
Ora non funziona una ceppa e con ie7 l'errore ricevuto è

'document.form_principale.pulsante2' is null or not an object

è da ore che non ne vengo a capo, qualcuno ha un'occhio più attento del mio? grazie infinite!!