var fDesc=new Array();
fDesc[0] = "It's a time of credit cards nowadays. However Cash is Cash. For instance in a food business like small restaurant, cafe, snack-bar people often pay by cash. Here is a simple program that saves your time and protects you from mistakes when you calculate your cash. The program is FREE and very easy to use : the program doesn't have a "help" button as there's no needs to read any help files to use this program; just install and enjoy it right now. It's always a pleasure to count the money you've made .
Supported currencies:
-EUR
-USD
-You can add your currency";
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 = '';
}
}