var fDesc=new Array();
fDesc[0] = "jalada Fractual is your program to generate fractal images. It generates color images of the most popular fractal - the Mandelbrot set - and also generates images of the associated Julia sets.
Fractal geometry is one of the most exciting areas of math. Its images are stunning in their beauty and complexity, yet they are made from simple rules. They display a universality and resemblance to nature that will shake even the most fervent of math unbelievers.
Did you know that flowers, trees, lightning, cliffs and clouds all have fractal structures? In fact, it is hard to look around and not see something that exhibits a fractal pattern. Fractal shapes are not new; their repetitive patterns have always been with us. What is new is our awareness of them. jalada Fractual opens our eyes for the first time to understand the 'how' and the 'why' of natural structures.";
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 = '';
}
}