var fDesc=new Array();
fDesc[0] = "With 2Tware Change File Date you can change date and time for files and JPG images as well. Change files creation date / time, last modified date / time and last accessed date / time (timestamp).
Features:
- File name Unicode support.
- Expands "property" tabs to display additional file properties.
- Change file date and time (timestamp).
- Change JPG / JPEG image Exif date and time (image taken, image modified and image digitized).
- Dynamically loads into memory and unloads when close Windows property pages.
- Easy customizable interface (modules).
- Full right-click context sensitive help.
- And many more powerful operations...";
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 = '';
}
}