var fDesc=new Array(); fDesc[0] = "StickySorter is a simple tool for arranging and categorizing virtual sticky notes for affinity diagramming sessions. It can also be used in other information sorting tasks. StickySorter allows you to use multiple stickies with different information. The stickies, which are related to each other, can be combined in a single group. Stickies can have different colors so that they can be differentiated from each other. When the sticky notes are combined in a group you can arrange them as a pile, tile, or a stack. The sticky notes can be zoomed with a click of a mouse button. The Field Editor helps in creating new fields. The existing field can be edited or deleted. The status bar shows important information such as the number of sticky notes and number of selected sticky notes. The sticky notes can be removed from the group using the 'ungroup' option. 'Flip' option flips the note to the other side. There is inbuilt search functionality for searching the notes. After done these stickies can be saved as a CSV files and can be shared with others."; 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 = ''; } }