function myObject() { this.someText="Hi!"; this.period=setInterval("alertsometext();",2000); } function alertsometext() { alert(this.someText); } n=new myObject();