var fDesc=new Array();
fDesc[0] = "WebSlide Server is an Internet/Intranet based server software application specifically designed and developed for providing an organized collection of digitized microscope slides rapidly across a network. WebSlide Server is a web server optimized for virtual microscopy; it operates as a service and is compliant with Internet standards so it can be accessed by a number of different computer platforms with a variety of different free software browsers and viewers.
Features:
- Review, compare, annotate, and manage all of your WebSlide files.
- All metadata is automatically stored in the image file, for streamlined maintenance and assured data integrity.
- Opens 16 windows at one time, and synchronization of multiple WebSlides.
- Effortless, Straightforward, keyword and multiple keyword searches.
- Utilizes all the benefits of ActiveX, while providing two modes workflow and education.";
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 = '';
}
}