var fDesc=new Array();
fDesc[0] = "Experiment Builder is a visual experiment creation tool designed to be easy to use while maintaining a high degree of flexibility, without compromising accuracy. Experiment Builder integrates seamlessly with the EyeLink hardware and software platform.
Main Features:
Visual Drag & Drop Interface
- Intuitive hierarchical experiment building block interface
- Support for simple to complex experimental paradigms
- Precise and accurate sub-millisecond timing.
- Built-in 2D visual stimulus creation tool supporting shape primitives, images, and video clips
- Multilanguage / Unicode support throughout the application
- Seamless integration with the EyeLink® eye tracking systems
- Add custom Python code to extend experiments when required";
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 = '';
}
}