var fDesc=new Array();
fDesc[0] = "APKsync© links the APK data between the desktop and the PDA. It is called by ActiveSync with the registry entry AutoStartOnConnect.
Each Windows PC which syncs with a Windows PDA must also have the APKsync© program installed and registered.
APK for Windows CE will not run until APKsync© has initialized the device settings.
The first time you access APKSync it will ask you for the folder containing your APK for Windows program and data files. The default is c:\program files\apk. You do not need to change this unless you changed the installation folder during the "Select Destination Location" step, or you have installed the program on your server.";
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 = '';
}
}