var fDesc=new Array(); fDesc[0] = "Create custom splash screen applications that display an image on screen and then run a program or any other type of file. Use transparent images with variable or single colour transparency - perfect for non-rectangular splash screens! Optionally generate an Autorun file for use with splash screens that are distributed on CD. Specify system requirements that must be met for a splash screen to run - splash screens can check the operating system, screen resolution and colour quality of the end user's computer. Incorporate audio to play a signature tune, sound effect, or oral message when a splash screen is displayed. Specify the exact length of time that a splash screen is shown for, and specify the point at which the target file is run. A number of example splash screens can be downloaded from the manufacturer's web site."; 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 = ''; } }