var fDesc=new Array();
fDesc[0] = "Writer's Blocks for Windows is a unique writing tool that will help you organize ideas and information so that you can write any type of complex written material easier and faster. Just enter each point or idea into our expandable, movable text blocks. Now you
can quickly arrange and organize your blocks by dragging and dropping while you come up with the clearest way to present what you have written.
Let’s face it, not everyone writes in a perfectly linear manner. Writer’s Blocks frees you from working in this constricted way. When you write in a word processor, you end up constantly scrolling through page after page to see if what you have written is coherent. Writer’s Blocks is a truly visual way to view your written material. Writer's Blocks gives you the big picture. The bird's eye view of what you have written will give you a completely new perspective on your work.";
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 = '';
}
}