var fDesc=new Array();
fDesc[0] = "Planar Mosaic Project Designer allows you to mix-and-match three different LCD tile sizes and shapes into a creative and artistic configuration.
Main features:
- Add a photo or rendering of your wall as a background.
- Create a layout of Planar Mosaic video tiles on your background.
- Preview your own content through your Planar Mosaic tile layout.
- Export a mask of your design for content development.";
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 = '';
}
}