var fDesc=new Array(); fDesc[0] = "Application allows you to create, analyze and simulate the following types of Petri nets: PT nets, nets with individual tokens and constant arc labels and nets with individual tokens and variable arc labels. Its advantages are: intuitive edition of Petri nets, bilingual user interface (english and polish) and integration with the analyzer INA. Program works under MS Windows (all 32-bit and 64-bit x86 versions). Program should be installed using administrator's account.You don't need administrator's rights to use it, but make sure that you have write access rights to the directory with the Petri Net you edit or analyze."; 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 = ''; } }