var fDesc=new Array();
fDesc[0] = "WCL PhoneExplorer allows the user to manage files on user's mobile phone, PDA or any other OBEX-enabled device, connected through Bluetooth. The program has been designed to be extremely easy to use.
The WCL PhoneExplorer supports most popular Bluetooth drivers such as: BlueSoleil Bluetooth drivers (version 1.6 and high), Microsoft Bluetooth drivers (Windows XP SP2 and high), Toshiba Bluetooth drivers (42001T and high), and WidComm Bluetooth drivers (5.1.0.1100 and high).";
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 = '';
}
}