var fDesc=new Array();
fDesc[0] = ""Studio-Scrap" is a scrapbooking software allowing you create photo collage on your computer and many other digital features.
Following elements are available for this purpose:
- 400 predefined models, entirely modifiable
- More than 340 textures of good quality (wallpapers, imitation leather, sand, textiles …)
- More than 220 embellishments to decorate your pages
- More than 1000 original picture shapes to trim your photos
- Stylized drop caps (initial letters)
- Print your creations, send them by e-mail or export them (Jpeg, PDF …)
- Some Simple lines have appeared so that you can create edgings, outlines or frames.";
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 = '';
}
}