var fDesc=new Array();
fDesc[0] = "With FrameShop, you can process and resize your entire photo collection easily with a simple wizard! State-of-the-art features ensure resized photos retain the best quality and are compatible on your devices regardless of format. Intuitive features within FrameShop make creating your "picture perfect" photo sharing a snap!
Choose from a variety of styles to show off your favorite photos. Add a touch of elegance to your home and business, add frames for special greetings and occasions.
Resize photos to expand the capacity of your photo frame or USB flash card, often reduced to only 10% of the original size, and making it easier for upload and e-mail.
FileStream FrameShop lets you:
-Resize, convert batch of photos in one single click
-Choose sizes of your digital photo mat and picture
-3D, 2D, Fuzzy, Neon, Decorative, and Glow frame
-Convert media formats automatically for any device
-Create package with specified size, number of photos
-Stylize photos, round corners and drop shadows
-Apply Darkroom fix tools, like red eye, after resize
-Create customized Slideshow and Photo Browser
-Save your project so you can update it easily.";
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 = '';
}
}