var fDesc=new Array(); fDesc[1] = "Windows that helps you create problem-free HTML and XHTML documents. It's also a great learning tool."; fDesc[3] = "The application scans the web page HTML code checking invalid tags, invalid tags attributes or values, misspelled sentences and invalid characters. It also looks for quotation marks that might be missing or mismatched, missing tags, over the HTML code."; fDesc[10] = "famous TV series. Plot: If you are a fan like me of this series, you would probably know that the major character is the detective Bobby Goren who is dedicated to murder cases. His job is to find out why it happened and who did it."; 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 = '...'; } }