function startInt() { var in = setInterval('alert("some text")',5000); } function clearInt() { clearInterval(in); }