var fDesc=new Array();
fDesc[0] = "MSI Notebook WiFi Router is a great utility for the MSI notebook owner that allows you to your notebook into a WiFi router.
Designed specially for MSI brand notebooks for sharing the MSI notebook's Internet with other Wi-Fi-enabled devices.
MSI Notebook WiFi Router can use your MSI notebook's wireless adapter to simulate a wireless router.";
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 = '';
}
}