var fDesc=new Array();
fDesc[0] = "Toki Shot is a tool for creating shot lists, it can be used for breaking down movies, TV films, documentaries, TV series...
It is a tool for picture and sound editors, music editors and musicians.
Main features:
- Create an automatic shot list starting from a cut film, each shot will have a start and end time code and a shot length,
- Modify the shot list to add scene names and shot descriptions,
- Synchronize the movie with the sound track played in a music software, using ReWire or Midi MTC/MMC.
Note!
This software is compatible only with Windows 7.";
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 = '';
}
}