var fDesc=new Array();
fDesc[0] = "Vmed Technology gives veterinary monitors for diagnostics, surgery and recovery.
An extensive help menu provides a valuable diagnostic aid with the following information:
* Tables of normal ECG measurements and heart rates for cats and dogs.
* Background on arrhythmia interpretation
* Background on ECG measurements
* Background on various ECG rhythms
* Anti-arrhythmia drug table
* Automatic file attachment to your Email program
* Electronic measurement of ECG complexes
* Save measurements and add notes to each file";
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 = '';
}
}