var fDesc=new Array(); fDesc[0] = "Electrical Control Techniques Simulator - EKTS is a simulator for designing Electromechanical Systems. It allows you to design variety of electromechanical systems using relays, time relays, buttons, motors, switches and some basic mechanical systems. EKTS allows building custom motor circuits using different motor types in different quantities. Main usage of this simulator is aiming to teach basics of Electromechanical systems, therefore it have error pointing feature which shows exact location of error and cause of that produces error. Other useful feature is listing all used circuit elements for calculating price and defining parts that will be used. EKTS doesn't calculate current flaw and power distribution in through circuit elements therefore it doesn't guarantee having same result in real environment. We strongly recommend having approval of supervisor before applying designed circuits on real environment."; 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 = ''; } }