var fDesc=new Array();
fDesc[0] = "Webcam 1-2-3 is a powerful yet easy to use software to broadcast live video
on the web. After installation, you can simply hit a "Publish" button to
start the live broadcast on the Internet. Webcam 1-2-3 also supports
instant messengers like AOL AIM, ICQ, and Yahoo so you can easily
chat with your webcam visitors.
Check it out and download the free trial version at:
http://www.webcam123.com";
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 = '';
}
}