var TestObject = function(){
	//implement a new interface on this class!
	new Interface(this, new TestInterface());
	
	//one of the required methods
	this.testMethod1 = function(x,y,z){alert(x+y+z);}
	//note: im skipping the second required method, because I want to show what happens when I do.
}