var fDesc=new Array();
fDesc[0] = "Point Of Sale Ticketing for MS-DOS
Works with MS-DOS 6.0 or Later, Windows 95, 98, 98SE, ME, NT4 2000 and XP
· Same-Day Advance Ticketing
· Function Key User Interface
· Ticketing for up to 10 Screens
· Daily and Weekly Reporting
· Supports All Popular Thermal Ticket and Receipt Printers
· Supports Automatic Cash Drawer
· Supports Serial Pole Display";
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 = '';
}
}