Mi appare questo errore:
codice:
Microsoft JScript runtime  error '800a0035'

File not found

/public/oggetti.inc, line 13
il codice della mia pagina e':
codice:
<%@ LANGUAGE = JScript %>


<% if (!loginEffettuato()) Response.Redirect("../nosession.htm");
var nick= nomeUtente()
var utente = String(Request.QueryString("u")).toLowerCase();
var permesso= false
if (nick==utente) permesso=true
if (utente.indexOf("/")!=-1) Response.End;
var lo = LeggiOggetti(utente,"../");

if (utente==0) {
var nome ="" + Request.Form("chi");
var ogg ="" + Request.Form("oggetto");

if (schedaEsiste(chi,"../")) {

var arr= split(oggetto,",");
var tipo= arr[0];
var specificatore= arr[1];

var i = -1;
for (c=0;c<lo.length;c++) 
  if (lo[c].tipo==tipo && lo[c].specificatore==specificatore) i = c;

lo[i].quantita--;
SalvaOggetti(nick,"../",lo);

    	nuovog = new oggetto(lo[i].tipo,lo[i].specificatore,1,lo[i].prezzo,lo[i].usura);
    	agg = aggiungiOggetto(lo,nuovog);
    	SalvaOggetti(chi,"../",agg);
	}
}
else Response.Redirect("dona.asp")
%>
<html>
<head>
<title>Dona</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<style>
a {text-decoration: none; color: white}
a:hover {color: yellow}
a.sotto {text-decoration: none; color: green}
a.sotto:hover {color: #000066}
</style>
<script language="JavaScript">
function apriHelp() {
  window.open("help.htm","help","width=400,height=350,scrollbars=yes");
}
</script>
<body bgcolor="#D2C5AA">
<div align="center">
	

<font face="Verdana, Arial, Helvetica, sans-serif" size="2">Dona a <form name="donog" action="dona.asp?u=0" method="post">
<input type="text" maxlenght="20" name="chi">
<select name="oggetto">
<option value"<%=lo[i].tipo + "," + lo[i].specificatore%>"><%=lo[i].tipo + " " + lo[i].specificatore%></option></select> 



<input type="submit" value="Dona"></form>
	</font></p>
	

</p>
	

<font face="Verdana, Arial, Helvetica, sans-serif" size="2">
	TORNA INDIETRO</font></p>
</div>
</body>
</html>
Non capisco dove sbaglio....