var fDesc=new Array();
fDesc[0] = "MSI Smart Tool creates an Intel 100 series compatible Windows 7 installation into USB storage or ISO file. It allows you to install Windows 7 from USB device or SATA ODD for Intel 100 Series motherboard. USB storage needs 8GB or more capacity and it will be formatted during the process.";
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 = '';
}
}