var fDesc=new Array(); fDesc[0] = "Welcome to the Win7 Gadget Maker. This program not only allows you to make a gadget easily but allows you to preview your gadget without compiling it. Gadgets are all made with HTML and JavaScript, hence the simplicity of this software.

Can make projects, don't need to use the header tags, such as the html, head, or body tags. These are automatically inserted when compiled. Now that that's completed, you can make Javascript code by using the JS Editor tab or ignore that tab to have a non-interactive gadget. The programming for a settings window is in a different section."; 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 = ''; } }