var fDesc=new Array();
fDesc[0] = "One of the most colorful DaisyTrail kits, Painted Backyard is just lovely. Think hand-drawn back garden, funky buttons & vintage backgrounds.
The Painted Backyard Digikit contains the following:
- 59 Embellishments
- 8 Background Papers
- 5 Intelligent Photo Frames
- 5 Material Papers
- Complete themed alphabet, including upper and lower case letters and standard punctuation marks.
- 6 Customisable Layouts
- 3 Brushes
- All graphics in this digikit are created at high quality 300dpi.";
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 = '';
}
}