var fDesc=new Array();
fDesc[0] = "The ideal solution for any small or medium size business that needs to do retail sales. It provides a database for stock and customers, an intuitive interface for sales staff to work with and powerful reports and transaction tracking.
The program can be coupled with a bar code scanner and is designed to allow the main operations to be used from a touch screen. Support is provided to operate a till and separate receipt printer. The facilities include bar code printing, email reports and customer accounts.";
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 = '';
}
}