/* table layouts */ var layout1 = new DesignTable("clean", "Clean%20table"); layout1.layout = function(table){ table.setAttribute("border","0"); table.setAttribute("cellSpacing","0"); table.setAttribute("cellPadding","0"); table.setAttribute("width","100%"); table.className = 'clean'; } DesignTable.register(layout1); var layout2 = new DesignTable("fullsize", "Fullsize%20table"); layout2.layout = function(table){ table.setAttribute("border","0"); table.setAttribute("cellSpacing","0"); table.setAttribute("cellPadding","0"); table.setAttribute("width","100%"); table.setAttribute("bgColor","#EFEEE9"); table.className = 'fullsize'; } DesignTable.register(layout2); var layout3 = new DesignTable("multicolor", "Standard"); layout3.layout = function(table){ table.setAttribute("border","0"); table.setAttribute("cellSpacing","0"); table.setAttribute("cellPadding","0"); table.setAttribute("width","100%"); var trs = table.getElementsByTagName('tr'); for(var i=0;i