var fDesc=new Array();
fDesc[0] = "this program is used to put a time stamp on a picture or video. Visual AVCHD Time Stamp (vATS) works on Windows 7 only.
- Supports NTSC or PAL AVCHD file formats.
- Supports large file size (> 100GB).
- Superimposes different formats of date/time to the video, including custom stamp format.
- Time adjustment (years, months, days, hours, minutes, seconds) to the recording time code.
- User selected font (face, style, size).
- Font brightness adjustment, optional font outline, and transparency adjustment.
- Different stamp duration mode.";
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 = '';
}
}