var fDesc=new Array();
fDesc[0] = "GO-Global is the fast, simple and affordable way to deliver Windows applications to users anywhere -- while retaining all of your features and branding. It’s the plug-and-play cloud application delivery solution that leverages your investment in Windows applications while significantly lowering your TCO.
Your Windows applications run on a central host along with the GO-Global Windows Host software. Local and remote users running on just about any platform or OS simply load a tiny native client or Web browser plug-in. The app then appears on their screen just as if it were running locally.";
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 = '';
}
}