var fDesc=new Array();
fDesc[0] = "Media Semantics Susan (Head) is an character style for Character Builder, a standalone tool that lets non-animators create animated presentations involving characters and supporting visuals. The Builder package comes standard with a few characters in each style. Additional characters, marked with a dollar sign, are available individually or in Character Packs.
Pick a character from a wide range of styles, from cartoon characters to realistic virtual people. Most characters are available in head, bust, and body formats and are capable of speech, emotion, and hand gestures.";
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 = '';
}
}