var fDesc=new Array();
fDesc[0] = "MagicSymbol is a versatile interactive technology.
Main features:
- MagicSymbol is customisable to work with any 3D model
- Clients can supply their own 3D Models / animation or commission Inition to produce them
- Display animated models (see demo video)
- Display videos embedded in models (available soon)
- Show multiple models superimposed onto different MagicSymbols simultaneously
- Recognise a large number of different MagicSymbols
- MagicSymbols can be printed on any flat, non-reflective surface - e.g. flyer, beer mat, product packaging, name tag, leaflet, ticket, building...
- MagicSymbols can be printed any size, from business card up to several metres across.
- System uses any standard display (projection, LCD/Plasma, LED) and standard camera and PC.
- Software is licensed from Inition for duration of event or installation.";
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 = '';
}
}