var fDesc=new Array(); fDesc[0] = "What this does is it builds a list of all the layouts, Opens them all up and reads the Zone Information and does a quick row count . It will then Process the most recent file for that zone that has over X(configurable) number of items in the file. You can Select a house on the Left side and right click to rename the house. This will be saved to an XML file in the program's directory and referenced whenever you load the program. This name is matched up by the ZoneID which should be persistent unless SOE merges servers or rebuilds the zone tables. (clicking on a house on the left will filter the list on the right)"; 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 = ''; } }