var fDesc=new Array();
fDesc[0] = "Shoretel Sky Softphone is an application that allows you to place calls from your PC.
A softphone is an application that runs on a computer and functions as a phone, but without the handset that is normally associated with a phone. This type of software application functions as a virtual phone and provides DTMF, 2-way audio, and appears graphically as a real phone on the computer's screen. A softphone is ideal for business travelers who need access to their ShoreTel Sky phone service from any location where they have their laptop, tablet, or other portable computing device.";
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 = '';
}
}