var fDesc=new Array();
fDesc[0] = "Doobs for Excel allows you to export any type of database to your Pocket PC (using the doobs viewer). Currently support BDGest', xls & meedio.
Doobs for Excel provides the easiest way to convert XLS files to Pocket PC.
You CD/book collection is on an excel spreadsheet? Then this is the perfect tool to easily view them in a friendly way on your Pocket PC.";
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 = '';
}
}