var fDesc=new Array();
fDesc[0] = "AiToolkit - Calcs provides a comprehensive set of tools to allow calculation of the majority of common accident investigation calculations performed. These include calculations used in the UK City & Guilds - Forensic Road Collision Investigation syllabus, taught within UK Accident Investigation training centres along with many other commonly used formula.
AiToolkit - Calcs is provided with an easy to use Windows interface and has extensive fully detailed help available at all times including the relevant formulas used within the calculations.";
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 = '';
}
}