var fDesc=new Array();
fDesc[0] = "iPod Encoder Filter is a powerful ipod encoder that allows write to ipod video file in any Directshow base application. For example - video capture, video converter, video editing application.
Features:
-Support encode ipod video file in any Directshow base application.
-Support MP4, H.264 video codec, AAC audio codec.
-Support different ipod profiles.
-Compatible with any programming language that supports Directshow";
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 = '';
}
}