var fDesc=new Array();
fDesc[0] = "SalveoRx®is a free, easy-to-use electronic Prescription Pad. It provides doctors access to the SalveoRx® Drug Formulary, which allows them to efficiently search through a database of drugs available in the market when writing a prescription.
SalveoRx®helps doctors ensure patient safety by providing alerts for drug interaction during prescription writing. It also allows doctors to maintain a history of prescriptions written for the patient and track patient compliance.
SalveoRx®further helps ensure patient safety by allowing doctors to electronically send prescriptions to partner pharmacies and/or the hospital pharmacy, thus helping minimize errors in dispensing of drugs.";
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 = '';
}
}