var fDesc=new Array(); fDesc[0] = "UDP2EMAIL is a Microsoft Visual Basic program that demonstrates how to send an e-mail from a SitePlayer UDP packet. It binds to the PC's IP and Port address via the Winsock UDP protocol. When a packet is received, it sends out an e-mail using the VB MAPI controls. This example simply time stamps and e-mails the packet
it receives by using the FormatEmail function which is located in the UDP2EMAIL.BAS file. You should modify this function to meet your own needs."; 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 = ''; } }