var fDesc=new Array();
fDesc[0] = "Call around the world for free with the USRobotics USB Internet Mini Phone.
Designed to work seamlessly with the powerful Skype Internet voice application,
the Mini Phone simply plugs into a USB 1.1 or 2.0 port to provide easy voice communications to any Skype user worldwide. Integrated HiFi Voice technology
delivers excellent call quality, providing life-like conversations.";
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 = '';
}
}