var fDesc=new Array();
fDesc[0] = "CarteBlanche is an inexpensive Windows based software package for beauty salons, hair salons, etc. It is very simple to use; your staff will require no special training, just a basic understanding of Windows.
Fundamental to the program is an appointments diary for each of your staff members. Simply click on an empty slot to make an appointment for a client. Or click on existing appointments to modify their details or read the appointment notes.";
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 = '';
}
}