
function Z_TableHeader(z_name) {
  document.writeln("<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\">");
}

function Z_RowHeader(z_name, idx) {
  if ( z_name != "glossario" ) {
    document.writeln("<tr><td colspan=\"15\" bgcolor=\"#3366cc\" height=\"1\"></td>");
    document.writeln("<tr style=\"padding:4px\">");
  } else {
    document.writeln("<tr style=\"padding-top:5px\">");
  }
}

function Z_ColumnTitleHeader(z_name, idx) {
  document.writeln("<td class=\"cal\">");
}

function Z_ColumnContainerTitleHeader(z_name, idx, width) {
  document.writeln("<td " + width + ">");
}

function Z_CellHeader(z_name, align, idx) {
  document.writeln("<td align=\"" + align +"\">");
}

function Z_ColumnHeader(z_name) {
  document.writeln("<tr>");
}
function Z_ColumnContainerTitleHeader(z_name, idx, width) {
  document.writeln("<td " + width + ">");
}

function Z_CellHeader(z_name, align, idx) {
  document.writeln("<td align=\"" + align +"\">");
}

function Z_ColumnHeader(z_name) {
  document.writeln("<tr>");
}

function Z_RowFooter(z_name, idx) {
  document.writeln("</tr>");
}

function Z_ColumnTitleFooter(z_name, idx) {
  document.writeln("</td>");
}

function Z_TableFooter(z_name) {
  document.writeln("</table>");
}

function Z_CellFooter(z_name, idx) {
  document.writeln("</td>");
}

function Z_ColumnFooter(z_name, idx) {
  document.writeln("</tr>");
}



