var fDesc=new Array();
fDesc[0] = "Enormous fun. Spex World! Playground is a simple and intuitive 3D design software for young people. Spex World! Playground includes a budget facility making it a rich resource for Design & Technology, Maths and great for Graphical Modelling too!
Design the perfect playground! A bright and colourful variety of 3D Play items are quickly and easily put to use to build the playground of your dreams. Climbing towers, tunnels, a bouncy castle, toys and more. It is in 3D so you can take a virtual walk around the school to see for themselves how it looks";
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 = '';
}
}