var fDesc=new Array();
fDesc[0] = "The EasyTune application was designed to be a stylish overclocking utility, that provides a new and improved way for overclocking. It works in 2 modes, Easy Mode for the novice users and Advance Mode for power-users.
EasyTune 6 is a free system enhancement and management tool for GIGABYTE Motherboards.
Support Intel X58/P45/P43/G45/G43/G41 series and AMD Ultra Durable 3 series MB.
O.S : Windows XP ,Windows XP 64bit ,Windows Vista x86 (32-bit) ,Windows Vista x64 (64-bit) ,Windows 7 32bit ,Windows 7 64bit";
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 = '';
}
}