var fDesc=new Array();
fDesc[0] = "SetFSBTray is a program which will help you to:
Main features:
- 3 customizable FSB settings in tray icon: low, medium, high.
- Support for all clock generators in SetFSB.exe
- logoff/shutdown/hibernate/restart from tray icon
- You can toggle whether shutdown and restart reset the FSB when you click them.
- GP entry is detected, then the the toggle is disabled.
- You can disable and hide the overclocking buttons and just use this for the shutdown buttons.
- Add a script to the GP. This will automatically run SetFSB on shutdown and reset the clock (Use if your system hangs while overclocked).
- During uninstall these entries will be removed for you, or it can be removed with the program.
- Toggle run on startup
- Add/Remove Task
- Can add/remove task from task scheduler to overclock onstartup";
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 = '';
}
}