var fDesc=new Array();
fDesc[0] = "Developed for professionals, the Logix-4D show and media control system applies the most advanced technology to create the backbone of a modern entertainment system.
Logix-4D is used to play multi channel video with Edge Blending and geometry correction for "multi-projector" displays and link together multiple production elements, such as lighting and special effects. The show may be locked to any linear media, such as a multi channel video segment. Alternatively, a show could be completely interactive; the audience may trigger show events by touching any one of the video screens. These two elements of a show could be mixed together.
Pixel perfect, frame synchronized video, audio, lighting, motion, and other devices are all integrated into one powerful and reliable system.
With a simple and intuitive user interface, Logix-4D is an all-in-one system for cinemas, shows and rides at amusement parks, museums, exhibitions, visitor centers etc.";
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 = '';
}
}