var fDesc=new Array(); fDesc[0] = "You can see invisible electric field - if you use "Electric Field". It is an excellent tool forvisualizing electric field and equipotential lines. Visibility of field line and potential surface depends on their magnitude. You can put unlimited number of charges in the field. Also, it can simulate electric field of charged condenser, charged wire and charged dielectric objects. "Electric Filed" have ability to measure field strength and filed potential. Supports MDI, bitmap exporting, and printing."; 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 = ''; } }