window.name="chords";

var base = location.href;

function draw_tooltip(name, image, ws) {
   if (!name || !image) { return; }
   if (ws){
      for (var i=0; i < ws; i++) {
         document.write('&nbsp;');
      }
   }
   document.write('<a class=\"chords\" href=\"' + base + '\" onmouseover=\"this.T_WIDTH=100; this.T_STICKY=true; this.T_ABOVE=true; return escape(\'<a target=\\\'big_chord\\\' href=\\\'../images/chords/' + image + '.jpg\\\'><img width=\\\'100\\\' src=\\\'../images/chords/' + image + '.gif\\\' /></a>\')\">' + name + '</a>');
}


var stave = "I";

function start_column(measure, empty ) {
   if (!measure) { return; }
   document.write('<td id=\"' + stave + 'C' + measure + '\">');
   if (empty) { 
      document.write('</td>');
   }
}

function end_column() {
   document.write('</td>');
}
