var fDesc=new Array();
fDesc[0] = "The new AGEphone Desktop 2 is SIP based internet telephony softphone that enables users to choose from a host of standard compliant Voice over IP (VoIP) providers. It is based on our home grown microSIP stack that is one of the smallest implementations throughout the industry and offers high performance on desktop and embedded systems alike.
The softphone is designed to support the latest standards and makes it possible to use multiple VoIP services for outgoing telephony and dial in numbers all around the world! Users don't need to worry about their network environment and can even have their PC wake up on an incoming call if their PC supports Intel's new Remote Wake Technology.";
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 = '';
}
}