var fDesc=new Array();
fDesc[0] = "Ciao Point-of-Sale automates your restaurant resulting in an exceptional dining experience for your customers and greater profits for your restaurant. Ciao does this using:
- Intuitive, highly graphic menu screens that are easy to learn and use, eliminating errors
- A robust suite of management tools with flexible setup options and unlimited reporting details
- An Automatic Hot Standby feature to avoid downtime and data loss";
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 = '';
}
}