Con il seguente codice

codice:
 

function Controllo()
{
	if ((document.frm2.nickAeid.value == "") || (document.frm2.nickBeid.value == ""))
		{window.alert("I Nick Non Possono esser nulli");
		return false;
		exit;
		}
}


<form method=post action=pre-enable.php name="frm2" onsubmit="return Controllo()";>
<center>
  
      <select name="nickAe" id="nickAeid">
	  <option> </option>

etc etc
.
.
.
Con Mozilla va tutto ok, mentre con Internet Explorer mi da sempre l'errore "I Nick Non Possono esser nulli"

cosa vuol dire?