var fDesc=new Array();
fDesc[0] = "Bloody6 program allows you to change the settings of all Bloody gaming mice except Q-series. It lets you change the button assignments, X/Y sensitivity, etc. You can also create keyboard/mouse macros with precise millisecond delays. Sensor calibration settings allow you to fine-tune your mouse for specific table/mousepad texture.
Bloody6 comes with 4 different "Core" levels for various games such as RPG/RPS, FPS, Senior FPS, and MMORPG.";
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 = '';
}
}