var fDesc=new Array(); fDesc[0] = "VLFullScreen allows your application to acquire all of the available screen area as and when desired with absolutely minimal coding (how about zero!). Complete control on the font and text lets you use it for applications developed for non-English languages also, and maintain consistency in the look and feel of your application.

Main Features :
- Automatic display of restore button when operating in full screen mode
- Customizable caption, color and font for restore button
- Automatic addition of a full screen menu option in applications system menu
- Customizable text for menu item added to the application system menu
- Minimal programming"; 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 = ''; } }