var fDesc=new Array();
fDesc[0] = "Use BlackBerry 9100 Rogers Simulator to view and test how BlackBerry® Device Software and the screen, keyboard and trackpad/trackball/trackwheel will work with your application.
With this simulator you can run and debug applications as if they were on an actual BlackBerry smartphone.
BlackBerry 9100 Rogers Simulator has a user friendly interface, from the main menu you can load BlackBerry applications and themes, simulate:
- USB cable connected
- Headset connected
- Battery properties
- Change SD card
- GPS location";
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 = '';
}
}