var fDesc=new Array(); fDesc[0] = "Song Sheet allows you to create lyric sheets with chord fingering diagrams. The built in text editor includes numerous tools: font colors, shading behind text (for highlighting special lyric lines) bold/italic/underline with a single button click, multiple undo/redo, left/center/right justify, left and right indents and clipboard cut/copy/paste functions. Song Sheet is also a tool for creating, modifying and saving chord fingering diagrams. Use the chords included with the program or create your own with the improved Chord Creator."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }