It looks like you're new here. If you want to get involved, click one of these buttons!
'uploader' : \"/static/uploader.swf\",
'scriptAccess' : 'always',
'script': '/default/index',
'cancelImg' : \"/static/cancel.png\",
'multi' : true,
'scriptData' : {'id' : '1'},
'buttonImg' : \"/static/choose.gif\",
'height' : '33',
'onComplete' : add,
'onError': function (a, b, c, d) {
if (d.status == 404)
alert('Could not find upload script. Use a path relative to: '+'<?= getcwd() ?>');
else if (d.type === \"HTTP\")
alert('error '+d.type+\": \"+d.status);
else if (d.type ===\"File Size\")
alert(c.name+' '+d.type+' Limit: '+Math.round(d.sizeLimit/1024)+'KB');
else
alert('error '+d.type+\": \"+d.text);
},