var fDesc=new Array();
fDesc[0] = "OnSite 7 is not an upgrade. It was developed from the ground-up to take advantage of new technology and over 300 suggestions made by OnSite users.
Improved Navigation – More then just a pretty new face, the new interface in OnSite allows you to get to information faster.
More User Access Control – Good user access controls just got better. Administrators control what records a user sees.
Attachments – Attach any computer file (Word or PDF documents, Excel files or art files)
Track all contact information including a complete activity history, company size, prospect type and how they found about your company.";
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 = '';
}
}