I wrote this function and Firebug tells me that there is a Syntax error, I'm sure I'm doing something wrong with the "this".
function TituloRepetido(this){
var es=false;
for(var i=0; i<listaPeliculas.length; i++){
var p=listaPeliculas[i];
if(this==p['titulo']){
es=true;
}
}
return es;
}