var fDesc=new Array(); fDesc[0] = "The Windows Clipboard is like a scratch pad available to Windows and all running applications. It allows pieces of information to be temporarily stored and then retrieved later by another application. Say you’re writing a report and you see a bit of text on a website that you want to include in your report. You can copy that piece of text to the Windows Clipboard and then when you’re ready paste it into your document."; 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 = ''; } }