var fDesc=new Array(); fDesc[0] = "Window State Manager is a small package that gives you the ability to save the state of a Browser Window and retreive the saved data of the state later. The Window State Manager can store the dimensions (width and height), the position (x and y coordinates) and the current state (maximized or not) of a BrowserWindow and save it to a json file. The saved state can then later be retreived when using the same window name at the instance creation. The saved state's data will be automatically retreived when creating a WindowStateManagerinstance with an already-saved window name."; 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 = ''; } }