var fDesc=new Array(); fDesc[0] = "The OpenPortal is a framework, build to personalise sites helping us to select the relevant information. The basic idea is to allow a user to select a number of portlets to be shown on his/her personal page. A portlet can be a normal webpage, maybe of dynamic nature for example the users pop3/smtp mailbox or a news (nntp) reader. The portlet is a Java ServerPage or a Servlet and it is meant to be the entré to the rest of the application behind it."; 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 = ''; } }