var fDesc=new Array();
fDesc[0] = "MagicTune is an even more advanced than the OSD button. It is an integrated software program that is designed to optimize all monitor settings, and is equipped with an intuitive GUI (Graphic User Interface) which includes many more features, as compared to OSD.
MagicTune software allows the average user to make display adjustments much easier, more conveniently, and accurately, yet can also satisfy the much more precise and sophisticated requirements of graphics experts.
MagicTune employs an advanced display technology, called the DDC/CI (Display Data Channel Command Interface) protocol, to control all monitor settings. By simply connecting the signal cable, and by moving and clicking your mouse, it is now possible to set the optimum display settings faster and easier than ever.";
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 = '';
}
}