var fDesc=new Array();
fDesc[0] = "HP Remote Graphics Software (RGS) is a remote desktop connection protocol that delivers a high performance remote desktop user experience for standard and graphics intensive 2D, 3D, video and media-rich applications.
With HP RGS, users can enjoy on-demand access to their high performance desktop resources, where and when they need them, over a standard LAN, WAN or VPN internet connection.
In addition, HP RGS provides collaboration features to allow geographically dispersed professionals to see and share content rich visualizations in real-time, and also provides broad USB device redirection support.
HP RGS supports a broad range of client virtualization technologies, including multi-user virtual desktop infrastructure (VDI) solutions, HP Blade Workstations, Desktop and Notebook PCs, as well as Personal and Mobile Workstations.";
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 = '';
}
}