var fDesc=new Array();
fDesc[0] = "Display Mode plugin show the menu with all display modes and allow you to change the display resolution quickly.
Display Mode plugin features:
- you can choose from this resolutions: 800x600, 1024x640, 1280x1024, 1440x900, 1680x1020 and 1900x1200.
- you have two options for every resolution: 16 and 32 bit.";
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 = '';
}
}