Già quello era 1 e l'ho corretto ma non funziona ancora uff. con explorer mi da il seguente errore:

riga 5
carattere 9
errore previsto';'
codice 0

e questo è il codice della pagina
codice:
<html>
<head>

<script language="javascript">
funtion Validate();
{
for (i=0; i<document.forms[0].elements.length; ++i)
if(document.forms[0].elements[i].value == "")
{
alert("Attenzione il campo è obbligatorio!");document.forms[0].elements[i].focus();
return false; }
return true; }
</script>
</head>
<body>
<form action="inserisci.asp" onsubmit="return Validate(this)" method="post" name="forms">
<input type="text" name="news" size=20>

<input type="text" name="testo" size=20>

<textarea cols="60" rows="8" name="testo_ita"></textarea>
<input name="Inserisci" type="submit" value="Procedi"/>
</form>
</body>
</html>