var fDesc=new Array(); fDesc[0] = "The winsend package is an attempt to provide the complete functionality of the Tk send command using the Microsoft Windows platform. The two key points are inter-process communications between one interpreter and another, and automatic registration of interpreters with a central source. With the Tk send command this is done via the X Windows server. The winfo interps command returns a list of registered interpreters and the send command allows you to execute Tcl commands in the named interpreter. Finally tk appname allows the programmer to select the registration name."; 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 = ''; } }