var fDesc=new Array();
fDesc[0] = "HappyFingers is the easiest way to search, select, and call or text/sms your iPhone contacts right from your WiFi enabled Windows PC. Quickly make calls, type messages and transfer notes and photos from your computer to your iPhone by simply copy/pasting them.
-Add, edit or delete iPhone contacts from your PC.
-Quickly find and select the contact numbers you need with the the simple HappyFingers desktop search.
- Call and send SMS text messages from your PC.
- Send SMS text messages to groups or number lists
- Quickly transfer notes and images using the simple copy and paste function - Copy on one device and paste on the other!
- Connects automatically over WiFi";
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 = '';
}
}