var fDesc=new Array();
fDesc[0] = "If you are using Windows 7 you will get some extra problem using our product. However, if you follow the troubleshooting instructions you will be fine. In Windows 7 you can also try to run with compatibility mode selected. After you have installed Java prerequisite then run the Q&A installation program.
When installation is done try to right-click on the Q&A shortcut and choose Run as
Administrator.";
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 = '';
}
}