var fDesc=new Array();
fDesc[0] = "Click Shopping Organizer is a Windows application that makes it easy for you to :
-create shopping lists, then print them to paper or save them to your phone or PDA.
-make notes about the features you want, store hours/phones, etc., and retrieve them quickly and easily.
-Click Shopping Organizer is loaded with features to make shopping easy.";
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 = '';
}
}