var fDesc=new Array();
fDesc[0] = "PhotoViwer is a software built on YUI library, which is by far the best out there.
The latest version of Photo Viewer has a configuration model for using the Flickr API and a slide show mini thumbnail controls.
Photo viewer's main fetures are:
-Leverage the Flickr API for better flexibility
-Light weight for the flexibility
-Lightbox functionality, modal dialog and auto-centered panels
-Customizable events";
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 = '';
}
}