var fDesc=new Array();
fDesc[0] = "It allows you to morph your face into others' to create fun new facial images. You can put your face on a magazine cover, or use another picture or scene. Take your imagination to the next level!
Main features:
- the "Face Detection" technology automatically adjusts the face’s position and rotation to fit into the template.
- Create hilarious 'fantasy' pictures featuring users' own faces.
- Use webcam to capture your face and fit directly into the template.
- Hundreds of templates cover all occasions such as magazines, posters, trading cards, and etc.
- Easy to create DIY templates from any photos.";
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 = '';
}
}