var fDesc=new Array();
fDesc[0] = "GS-911 is a unique software and hardware combination that allows the BMW enthusiast the ability to communicate with the control modules in a safe and controlled manner.
In the true spirit of adventure associated with your motorcycle, the GS-911 tool is also available with a Bluetooth interface, allowing you to use it with most modern mobile phones (including BlackBerry); no need for anything else.
The models that are covered in either of the full release or the latest Beta are from R-series, K-series, F-series, G-series, C-series and S-series.";
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 = '';
}
}