  ctBrown  = new Array("../img/ct_brown/",  "#35A3D6");
  ctPink   = new Array("../img/ct_pink/",   "#F23D7B");
  ctYellow = new Array("../img/ct_yellow/", "#FFBF40");
  ctViolet = new Array("../img/ct_violet/", "#3366CC");

  function ct_begin(params, tablewidth, tl, tr) {

  imgfolder = params[0];
  bgcolor = params[1];

  s  = '<table border=0 cellspacing=0 cellpadding=0 width="'+tablewidth+'"><tr>';  
  s += '<td bgcolor="'+bgcolor+'" valign="top"><img height=10 width=10 src="'+imgfolder;
  if (tl) s+= 'tl.gif'; else s+='any.gif';
  s += '"></td><td bgcolor="'+bgcolor+'" width="100%"><span class=petit>&nbsp;</span></td>';
  s += '<td bgcolor="'+ bgcolor + '" valign="top"><img height=10 width=10 src="' + imgfolder; 
  if (tr) s+= 'tr.gif'; else s+='any.gif';
  s += '"></td></tr><tr><td bgcolor="' + bgcolor + '">&nbsp;</td>';
  s += '<td bgcolor="'+bgcolor+'">';
  
  document.write(s);

  }

  function ct_end(bl, br) {

  s = '</td><td bgcolor="'+bgcolor+'">&nbsp;</td></tr><tr>';
  s += '<td bgcolor="'+bgcolor+'" valign="bottom"><img height=10 width=10 src="' + imgfolder;
  if (bl) s+= 'bl.gif'; else s+='any.gif';
  s += '"></td><td bgcolor="'+bgcolor+'" width="100%"><span class=petit>&nbsp;</span></td>';
  s += '<td bgcolor="'+bgcolor+'" valign="bottom"><img height=10 width=10 src="' + imgfolder;
  if (br) s+= 'br.gif'; else s+='any.gif';
  s += '"></td></tr></table>';

  document.write(s);

  }
