var fDesc=new Array();
fDesc[0] = "Multi Photo Quotes is the elegant screensaver that combines images with quotes.
It has some unique and noteworthy features:
- It was designed with multimonitor setups in mind (but can work on single monitor pcs to).
- It can be configured to show images that span multiple monitors, or show different images on each monitor.
- Quotes can be displayed from standard quote/fortune files.
- Images and Quotes can be combined easily into Media packs that can be shared.
- Auto sizing of Quote text.";
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 = '';
}
}