요즘 prototype이 유행하고 있어서 잠깐 갖고 놀다가 문제점이 발생했습니다. function KALSOME(id, str) { var num = 0; var str = str; var int = null; var obj = document.getElementById(id); this.start = function() { int = setInterval(this.foo, 500); }; this.end = function() { if(int) clearInterval(int); }; this.foo = function() { num++; obj.value = str + " = " + num; }; } var kalsome_1 = new KALSOME("timer_1","성유리"); ----------..