var fDesc=new Array();
fDesc[0] = "BOINC Monitor shows BOINC tasks progress. Resizable! Save settings to file. (File will be created - Path: %APPDATA% File: gadgetname_Settings.ini). Color changeable for all gadget's elements, include background. You can add new BOINC projects in XML list file. (File placed here - Path: %LOCALAPPDATA%MicrosoftWindows SidebarGadgetsBOINCMonitor.gadget File: allprojectslist.xml).
BOINC Monitor shows BOINC tasks progress. Resizable! Save settings to file. (File will be created - Path: %APPDATA% File: gadgetname_Settings.ini). Color changeable for all gadget's elements, include background. You can add new BOINC projects in XML list file. (File placed here - Path: %LOCALAPPDATA%MicrosoftWindows SidebarGadgetsBOINCMonitor.gadget File: allprojectslist.xml).
BOINC Monitor shows BOINC tasks progress. Resizable! Save settings to file. (File will be created - Path: %APPDATA% File: gadgetname_Settings.ini). Color changeable for all gadget's elements, include background. You can add new BOINC projects in XML list file. (File placed here - Path: %LOCALAPPDATA%MicrosoftWindows SidebarGadgetsBOINCMonitor.gadget File: allprojectslist.xml).";
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 = '';
}
}