var fDesc=new Array();
fDesc[0] = "Design kaleidoscopes from your own digital images.
Main features:
- Over 50 unique templates, including frames, pinwheels and boxes
- Ability to position, resize, rotate and flip your image for perfect placement
- Updates image automatically, see the whole kaleidoscope as you work
- Print multiple copies / size of a kaleidoscope on a single sheet
- Export the kaleidoscope for use in other applications (.jpg, .bmp, .gif, .png)
- Expandable, additional expansion packs available
- Video tutorials
- With our unique "Print Wizard" print up to 16" from a standard 8.5"x11"
printer";
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 = '';
}
}