var fDesc=new Array();
fDesc[0] = "v7 Polling contains many enhanced features, including:
- Checkbox style communication selections allow the user to quickly multi-select programs to save, to send or reports to poll.
- Create scripts, schedules and set up the calendar for automatic polling options.
- User defined classes allow for quick sorting and searching options, along with optional software settings.
- The All Polls grid stores previously taken reports for later printing, viewing and exporting. Users can also easily generate graphs based upon report data.
- Quickly revisit recently used maintenance area programs.
- Mass update allows users to update and edit many items simultaneously.
- Mass create tool can rapidly generate hundreds of items.
- The PLU Sale area offers the user flexibility to design their own product sales.
- Barcode printing to Avery brand labels and barcode printers.";
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 = '';
}
}