var fDesc=new Array();
fDesc[0] = "Pocket Snapshot is a utility that you can capture Pocket PC screens and control Pocket PC from desktop PC quickly and easily.
Main features:
-Capture Pocket PC screens and save images to disk very easily and quickly.
-View and control your Pocket PC from your desktop or laptop using keyboard and mouse.
-Support ActiveSync and Wireless network.
-Free upgrades and technique support.
-Extremely easy to use
-Unique QuickCapture Feature can help you save lots of time
-A must-have utility for your presentation and trainning
-A must-have utility for document writer and editor
-Support wireless LAN";
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 = '';
}
}