var fDesc=new Array();
fDesc[0] = "Analyzes your sports technique, brings a science lesson to life, or studies wildlife in action. ProAm captures video at speeds of up to 125 frames per second.
Main features:
- Designed for standard Windows PCs and laptops
- Record long takes - limited only by your computer's disk space and specification
- Genuine high-speed recording - no interpolation
- Analyse videos side-by-side
- An affordable alternative to stand-alone high-speed cameras";
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 = '';
}
}