var fDesc=new Array();
fDesc[0] = "It provides with machinist drill and tapping charts plus utilities.
This app also features:
- Decimal Equivalent chart
- Fractions from 1/2" to 1/512" increments up to an inch
- Metric increments from 1.0mm to 0.125mm up to 25mm
- Number screw sizes
- Displayed data is customizable
- Keeps track of what you last looked at and screen position
- Docking feature
- Copy to clipboard functionality
- Languages: English/ Français";
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 = '';
}
}