var fDesc=new Array();
fDesc[0] = "Introduction - EZ-C1 FreeViewer is free software for browsing the image data acquired by "Nikon C1" and a "Nikon C1si" system.
Required environment: - Windows Vista Business (English/ Japanese) Service Pack1 32bit. Windows XP Professional (English/ Japanese) Service Pack3 or later.
What’s new: - supports Windows Vista 32bit.
What’s Improved: - width on PolyLine.";
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 = '';
}
}