Syntax Error

Syntax Error

   I'm trying to use a third party script and I'm getting a Syntax Error on line 691 in Firebug.  As I am very new to JQuery can anyone see anything wrong with this?   Thank you.      

              $('#uploader').ajaxForm({
689             target: '#uploadresponse',
690             success: function(result){
691              var data = eval('(' + $('#uploadresponse').find('textarea').text() + ')');
692              if(data['Code'] == 0)
693        {
694        addNode(data['Path'], data['Name'], "file");
695        } else
696        {
697        $.prompt(data['Error']);
698        }
699        }
700        });