var fDesc=new Array();
fDesc[0] = "Each digikit contains a wide selection of themed embellishments, frames, brushes, materials, backgrounds, an alphabet and at least 4 predesigned layouts.
DaisyTrail Digikit Collection 1 is supplied as a DVD with a full colour resource guide.
This digikit collection contains 10 beautiful individual digikits:
- Blustery Spring
- Cupid
- Festive Walk
- Furry Friends
- Happy Day Out
- Melon School
- Nursery Rhyme
- Paradise Island
- Pebble Shore
- Planet Pop";
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 = '';
}
}