var fDesc=new Array();
fDesc[0] = "LCD-Test represents a collection of pages which helps you easily adjust the settings of your monitor to get the best possible picture quality.
Additionally, there are a number of test images that can help you to judge the image quality of a monitor.
You can check the images on this webpage or put them on a usb stick and try them in the computer store like I did when I created these test patterns.
These test images are much more revealing regarding monitor shortcomings than ordinary photographs.";
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 = '';
}
}