var fDesc=new Array();
fDesc[0] = "VSPrompter is a video utility developed by VIDEOSOLUTIONS.
Features :
- Support Dual/Single monitor mode
- Designed for Microsoft Windows 2000/XP/Vista 32bit operating systems
- Embedded text editor based on Rich edit text format
- Support RTF text files on scrolling, allows to use RTF features like selecting different fonts with different effects (BOLD, ITALIC, UNDERLINE and font color) per single text line
- Profile database for storing individual user settings
- Modifiable speed table
- Modifiable layout of scrolling aria (size and position)
- Additional information for reader – timer (total, remain), reader/lens pointer, script name and so much more.";
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 = '';
}
}