var fDesc=new Array();
fDesc[0] = "MEDUSA - Subtitling Station comes with the following features :
Native .ass format support
- Import export from .ssa, .srt, .sub, .xss, .psb, .txt script formats.
- Timing from .wav, .mp3, .ogg audio files.
- Timing from any DirectShow playable videoclip.
- Realtime Video preview of your subtitles.
- Timing-only or Dialogues-only import.
- Conditional Replace for selective replacements in the script.
- Realtime syntax highlighter for better code readability.
- Very flexible overriding system.
- A new karaoke creation mode, very fast and easy compared to SSA
- New Split/Join modes for cool video effects.";
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 = '';
}
}