var fDesc=new Array();
fDesc[0] = "Welcome to SitePlayerâ„¢, the embedded Ethernet HTTP server designed to easily and inexpensively web enable any microprocessor-based device. In approximately one square inch, SitePlayer includes an HTTP web server, 10baseT Ethernet controller, flash web page memory, graphical object processor, and a serial device interface. SitePlayer is a plug-in module that can also be used as a web enabling option, a product upgrade, or to retrofit older products.SitePlayer best performs as a coprocessor that handles web protocols and Ethernet packets independently of the main device processor. Web traffic does not effect the device processor, which also adds a measure of security. Communication between SitePlayer and the device is accomplished through objects sent through a standard two-wire serial port. No TCP/IP or network code is required.";
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 = '';
}
}