var fDesc=new Array();
fDesc[0] = "PhotoRemote is a software with which you can control both digital still cameras.
PhotoRemote uses the WIA driver from Microsoft, and supported so any PTP-enabled digital camera.
PhotoRemote was developed as a Windows application and is currently for Windows 2000, Windows XP, Windows 2003 Server, Windows Vista and Windows 2008 Server. A first version for Linux and Mac OSX will be in stock in the 3rd Quarter of 2010 appear.";
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 = '';
}
}