var fDesc=new Array();
fDesc[0] = "GIMIAS is a workflow-oriented environment for solving advanced biomedical image computing and individualized simulation problems, which is extensible through the development of problem-specific plug-ins. In addition, GIMIAS provides an open source framework for efficient development of research and clinical software prototypes integrating contributions from the Physiome community while allowing business-friendly technology transfer and commercial product development.
Main features:
- PACS Workstation (C-FIND, C-MOVE, C-STORE...)
- Clinical workflow navigation
- Multimodal 2D and 3D image interactive visualization
- Multiplatform (Windows, Linux)
- Manual segmentation and quantification
- Basic surface mesh manipulation and image processing
- Signal viewer
- Extensible throught custom plugins
- Automated GUI generation
- Visual workflow definition";
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 = '';
}
}