var fDesc=new Array();
fDesc[0] = "Operational Dosimetry Software for Emergency Response Teams.
Main features:
- Prepares dosimeters for instantaneous activation via a single button press (i.e. no reader required)
- Allocates dosimeters to users either permanently or temporarily
- Allocates dose to individuals after use of the dosimeter
- Provides summary of users' dose records
- Sets alarm levels personalized to specific user(s)
- Generates multiple reports
- Optional by task/job
- Extracts data to be added via local network to be used as issuance points
- Compatible with optional neutron dosimetry";
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 = '';
}
}