var fDesc=new Array();
fDesc[0] = "Fixmo Extend allows you to connect your laptop to the internet via the BlackBerry’s wireless internet connection – anywhere. Fixmo welcomes you to try the Beta of our latest creation – Fixmo Extend. Fixmo Extend is the perfect companion for mobile workers, road warriors, café surfers and anyone who needs to stay connected on the go.
No Wi-fi? No problem. Fixmo Extend allows you to connect your laptop to the internet using the existing data connection on your BlackBerry®.
Main features:
-Get connected quickly with an elegant user interface
-Handy charts and metrics help you monitor your data usage
-A simple download of mobile and desktop applications to get connected";
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 = '';
}
}