var fDesc=new Array(); fDesc[0] = "WebCam2000 is freely distributed open source software for Windows 95, 98, Me!, NT, 2000, and XP that serves images from any video capture device connected to a computer. WebCam2000 can serve pictures as either JPEG or bitmap (BMP) and can include complete HTTP headers or serve the image "raw". The second case is particularly useful when you want to perform further processing on the image; for example by using WebCam2000 as a back-end to a CGI script. One important thing to note is that the WebCam2000 is for people with a live internet connection only: the current version does not have the ability to dial-up an ISP and FTP upload an image."; 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 = ''; } }