var fDesc=new Array();
fDesc[0] = "You can directly backup up to 10 types of files from your iDevices to desktop computer without hassle.
Main Features:
- Transfer more than 10 types of data to desktop computer for backup, including photos, music, movies, contacts, text messages (SMS), safari bookmarks, notes, voice memos, playlists, books, etc.
-The exported files on your personal PC can be viewed, played, edited or shared with anyone you like freely.
-Contacts, notes, text messages and safari bookmarks will be exported and saved as HTML format for further viewing or editing.";
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 = '';
}
}