var fDesc=new Array();
fDesc[0] = "It allows you to create your own decorative layouts using a selection of digital papers.
Main Features:
-Choose from a selection of predesigned art, or use myStory Designer’s powerful design features to create your own papers and embellishments in your project.
-Switch between tasks easily with a ribbon interface that is organised around what you want to do - insert, cut & fill, colour, format, and other primary actions.
-Begin with Basic settings to explore the software and progress to Advanced for access to all of the options available. Or start with the Advanced settings right away.
-Add photos to a page from the local computer or directly from an online site like Facebook or Flickr.";
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 = '';
}
}