var fDesc=new Array(); fDesc[0] = "Julia Shapes is a program to render Julia fractals using quaternions numbers.

All the interface is on screen and is straight forward. Just tweak the parameters until you are satisfied of the result shown in the preview window and simply go to the render menu and select high quality."; 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 = ''; } }