var fDesc=new Array(); fDesc[2] = "seemingly monumental task into small, manageable pieces and then reconstructs it into a complete, publishable document. Personal Historian includes an extensive library of timelines, historical facts, cultural trivia, and memory triggers which give color and context to the history. You can even bring in your word processor documents, photographs, and genealogical data to easily build on work that you've already done."; fDesc[5] = "come from the Jewish historian Flavius Josephus. The titles include Life of Flavius Josephus, Antiquities of the Jews, and The Wars of the Jews, Against Apion and Discourse to the Greeks concerning Hades."; fDesc[7] = "great pictures and ease of use make it not only educational, but also fun."; function tCollapseAll(maxID) { document.getElementById("alls_action").innerHTML = "Expand descriptions"; var id=1; for (id=1; id <= maxID; id++) { if (document.getElementById("desc_" + id)) tShowHide(id, 2); } } function tExpandAll(maxID) { document.getElementById("alls_action").innerHTML = "Collapse descriptions"; var id=1; for (id=1; id <= maxID; id++) { if (document.getElementById("more_" + id)) tShowHide(id, 1); } } function tShowHide(id, show) { var s = document.getElementById("more_" + id); if ((s.innerHTML!=fDesc[id] || show==1) && show!=2) { s.innerHTML = fDesc[id]; } else { s.innerHTML = '...'; } }