var fDesc=new Array();
fDesc[0] = "What is beauty?
It is doubted whether anyone is able to put into words what beauty is. As Oscar Wilde said, "Beauty is a form of genius - is higher, indeed, than genius, as it needs no explanation". Do you agree? If so, you will probably like a beauty program that we have created.
Beauty Pilot shows you at your very best
Beauty Pilot allows you to bring out the beauty in women's portraits taken with a digital camera. Our sophisticated software is so easy to use that it needs no explanation regarding its user interface. Only a gentle touch is required to erase a skin imperfection on a photo: moles, warts, pimples, heat-spots, etc.";
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 = '';
}
}