var fDesc=new Array();
fDesc[0] = "PictureFrame Wizard is a freeware application to increase the possibilities with a digital (electronic) photo frame. PictureFrame Wizard adds extra functionality that nearly no photo frame manufacturer provide with the installer software for the digital photo frame.
The possibilities of PictureFrame Wizard:
- automatic date labelling of each picture
- optimise the available space in the memory of the photo frame
- resize the picture to match with the photo frame of choice
- supports virtually every photo frame available on the market
- basic tools for picture enhancement
- powerful tools (filters, colors, frames) to create great graphic effects
- presets to repeat graphic enhancement for other pictures";
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 = '';
}
}