var fDesc=new Array(); fDesc[0] = "Although the iPad, iPod and iPhone have the ability to play music and video files, these devices only support a limited number of formats. Since most music or video files are not created for the iPod, when you try to play them on your iPad, iPod or iPhone, you may find the following problems:
. The music or video cannot be played at all by your iPad, iPod or iPhone.
. The music or video file size is too large.
. You want to rip the music part from a video file."; 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 = ''; } }