var fDesc=new Array();
fDesc[0] = "Rear View Mirror is a motion detection program that can work with any web camera. The program shows alerts with a pop-up or notification sound. It can also work with remote network cameras that support MPEG streaming. It was originally written as a way to use a web camera as a mirror in an office cubical, alerting someone when another person walks into his or her cube.";
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 = '';
}
}