var fDesc=new Array();
fDesc[0] = "ASRock OC Tuner is a user-friendly ASRock overclocking tool which allows you to guard your system by hardware monitor function and overclock your hardware devices to get the best system performance. There are 4 major sections that are easy to fine-tune and monitor:
- Overclocking: Overclock CPU/PCI frequency for optimal system performance.
- Voltage Control: Voltage adjustment for CPU, DRAM, VTT, NB and SB to enhance compatibility and the boost overclocking.
- Hardware Monitor: shows the major readings of your system.
- System Health: checks temperature of CPU and MB, and adjust CPU Quiet Fan.";
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 = '';
}
}