force new object

force new object

if i have something like this

  1. myObject{
  2.       settings{
  3.             target: "#someID",
                destination : 0,
  4.             mode: "a"
  5.       }

          start : function(){
  6.             //blah blah blah
  7.       }
  8. }

Is there any way to force instantiation of a new instance of this object if it is to be used.
so this will work

  1. var newInstance = new myObject();

    newInstance.start(); 

but this will not work
  1. myObject.start();