var fDesc=new Array();
fDesc[0] = "WPG-130N is a portable wireless presentation gateway applies IEEE 802.11n technology. It is designed with a VGA video output interface in light and handy size, and ultra lightweight. You can easily take the WPG-130N to anywhere you want for wireless presentation at anytime.
With the hardware decoding capability, the WPG-130N can project high-definition video on the screen through wireless connection. It facilitates multiple users to freely display the presentations, images and videos wirelessly without swapping lots of cables to connect to a projector or LCD TV.";
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 = '';
}
}