var CreateFileListing=function(g,h,j){var k=null;var l=function(){var a=document.getElementById(g);if(!a){alert("Error in CreateFileListing. There is no html element with this id ("+g+")")}var b=document.createElement('table');b.setAttribute('id',h);var c=document.createElement('caption');c.appendChild(document.createTextNode(j));b.appendChild(c);var d=document.createElement('thead');var e=document.createElement('tr');var f=document.createElement('th');f.appendChild(document.createTextNode("File name"));e.appendChild(f);f=document.createElement('th');f.appendChild(document.createTextNode("Size"));e.appendChild(f);d.appendChild(e);b.appendChild(d);k=document.createElement('tbody');b.appendChild(k);a.appendChild(b)};var m=function(a){var b=document.createElement('tr');for(var i=0;i<a.length;i++){oElTd=document.createElement('td');oElTd.appendChild(document.createTextNode(a[i]));b.appendChild(oElTd)}k.appendChild(b)};return{"rows":[],"AddRow":function(a){if(this.rows.length===0){l()}this.rows.push(a);m(a)}}};