var fDesc=new Array();
fDesc[0] = "CentreCam is a development based on low cost webcams for the model engineer. It provides a first class method of centering, edge finding and micro measurements on the model engineer's milling machine or lathe.
CentreCam software offers the following features
-User selectable cross hairs, circle and alignment lines.
-Cursor key and function key control of cross hairs, circle and alignment lines.
-A centering mode to allow the centre of the crosshairs, circle and alignment lines to be adjusted. This provides compensation for any off-axis or squint effects of the camera.
-A measurement mode to allow both distance and angular measurements to be made.
-User control of screen layout and line colours.
-Colour and greyscale modes.
-Optional normalisation in greyscale mode.
-Selection of webcam sources.
-Access to driver features provided by the webcam supplier (in this Logitech).";
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 = '';
}
}