var fDesc=new Array(); fDesc[0] = "VLC SubtitlesFinder was created on the basis of a nice VLC script for adding subtitles to any video. That script crawls the OpenSubtitles website looking for the matching movie (no osdb hash function involved) and adds the subtitle into the VLC media player. Now, this script was modified and allows the subtitle downloading for an off-line usage. The downloaded file is placed in the same movie folder, renamed as the movie itself with the language suffix."; 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 = ''; } }