var fDesc=new Array();
fDesc[0] = "Enhance video and image format support in DVD PixPlay.
Video Formats:
-Apple Quicktime (*.mov), Flash Video (*.flv), MP4 (*.mp4), Windows Video (*.wmv)
Image Formats:
-Alias Wavefront RLE (*.pix), Apple Pict (*.pict), AVS (*.avs), Camera Digital Negative (*.dng), FITS (*.fits), FlashPix (*.fpx), Gimp Image (*.xcf), Graphviz DOT (*.dot), HDF (*.hdf), HP PCL Printer Image (*.pcl), JBIG (*.jbig, *.jbg, *.bie), Khoros VIFF (*.viff), Kodak Cineon (*.cin), Magick (*.miff), Matlab (*.mat), MTV Raytracing Image (*.mtv), Palm Pixmap (*.palm), Scalable Vector Graphic (*.svg), Seattle File Works (*.pwp), SMTPE DPX (*.dpx), Sun Rasterfile (*.sun), Vicar Rasterfile (*.vicar), XWindows Bitmap (*.xbm), XWindows Pixmap (*.xpm)";
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 = '';
}
}