var fDesc=new Array();
fDesc[0] = "MediCap is a tool for medical-health professionals. It benefits from various functions like : video recording, video editing and video conference. Patient’s information unit (Patient-based video recording, search for a patient). MediCap records video and captures images according to the patient identity for later review, reporting, e-mailing or printing.
You can enter information about your patients. Video capturing-recording and image capturing software for medical professionals, endoscopists and physicians.";
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 = '';
}
}