var fDesc=new Array();
fDesc[0] = "Launch goPod. Just click go to cap it/uncap your iPod. If it is not detected, clicking go will make goPod trying to detect it again.JUST CLICK ON GO ONCE, it may take some time (5 seconds). I know it's a bit "slow", but this is for compatibility reasons :)
Once your iPod is capped/uncapped, you *may* have to restart it. To do so, press the 'menu' button and the central button during 3 seconds if you are using a 4G iPod or the 'menu' and 'play' buttons if you have a 3G until you can see an apple.";
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 = '';
}
}