var fDesc=new Array();
fDesc[0] = "Hoya Color Filter Simulator is an efficient program that simulates the obtain results of what filter glass transmits for any thickness.
Main features:
- The transmission of each glass type with any thickness displayed
- Transmission curves with multiple conditions ( e.g. glass type, thickness ) superimposed and comparable
- Each property value ( average transmission, maximum transmission, capacity of BR color temperature conversion, etc. ) computable
- Transmission data exportable to an Excel file ( transmission value data and graphs exportable per 1 nm )";
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 = '';
}
}