var fDesc=new Array();
fDesc[0] = "DreamHair Hair style software is a professional hair style and makeup imaging system for the professional stylist. It allows you to supply your clients with a preview of hair styles and makeup before you start cutting and coloring.
Features:
-270 built-in hair styles
-View up to 20 Hair Styles at a time
-Hair Styles Creator: Design your own hairstyles.
-Thousands of Colors to use.
-Gallery: Save your work in the Gallery
- Print Pictures- Choose print size and position.
- Move and Resize hairstyles for exact fits.
- Customer management";
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 = '';
}
}