var fDesc=new Array(); fDesc[0] = "Formwizard is a mootools plugin that lets you deploy a wizard control with just a couple of lines of code.
A wizard is a user interface element where the user performs a task fulfilling several simple steps in a specific order. If you are using any major OS in the past decades, you should be familiar with this kind of control, though someone used to call it Assistant.
In order to let the developer integrate the wizard into the look and feel of a site, the css classes used by the wizard are totally customizable and the burden of css styling is totally on the developer shoulders"; 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 = ''; } }