var fDesc=new Array();
fDesc[0] = "Change My image can simulate change in hair style and color for your portraits. It can be useful in trying out different hair styles and hair cuts to see which suits you the best. It comes with a comprehensive collection of more than 800 hair styles, short, long and medium, for both men and women.
You can either load your photo or have this program capture your image using a webcam.";
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 = '';
}
}