It looks like you're new here. If you want to get involved, click one of these buttons!
function activateLoader(cart){
$("#uploadify").uploadify({
swf : 'allegati/uploadify.swf',
uploader: 'allegati/uploadFile.asp?cart=' + cart,
checkExisting: 'allegati/enclosures.asp?task=checkexists',
cancelImg: 'img/cancel.png',
buttonText : 'Upload File',
height : 30,
queueID : 'fileQueue',
auto : true,
onUploadComplete: function () {
$("#listFiles").load('allegati/enclosures.asp?task=showfiles&cart=' + cart);
$("#listFlatFiles").load('allegati/enclosures.asp?task=showflatfiles&cart=' + cart );
return true},
onSelect : function(){$("#fileQueue").fadeIn(100)},
multi : false
});
}