var fDesc=new Array();
fDesc[0] = "Xibit is a system that helps you publish rich, interactive Web photo albums.
Platform: Windows 98, Me, NT4, 2000, XP.
XibitMaker Utility create albums in 3 easy steps:
- Add images via drag and drop
-Edit captions in thumbnail view
-Resize all images automatically
Xibit Albums offer rich viewing experience:
- Captions and audio/video
- Panning and zooming
- Selectable image quality
-Background image preloading
-Interactive Options window";
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 = '';
}
}