var fDesc=new Array();
fDesc[0] = "Axel YouLogo is a simple and easy to use program for station logo design. Features:
- Static and animated logos
- TGA, BMP, PNG, TIFF, JPG, GIF sequences and FLASH animations
- Effects: shadow, blur, motion blur, smooth edge (deflicker)
- Smooth Transition: fade, move, zoom
- Page composer with multiple layers
- 32 bit images processing with alpha and transparencies
- Preview channel over VGA and video (depends according to the configuration)
- From 1 up to 4 channel version
- Remote control panel (as option)
- Intelligent page switching: in multiple logo environment only new/ modified logos will be displayed in transition, the others will stay On Air
- Preview is always available over VGA and also on video output if available (* depends on the configuration)
- Scaling: Pixel or percentage, Maintaining aspect ratio, High quality interpolation, Cropping
- Multiple layer and priority management";
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 = '';
}
}