1
2 function Base() {
3
4 }
5
6 Base.prototype = new Object()
7
8 Base.prototype.shared = function() {
9 return "Base-Shared-"+form;
10 }
11
12 Base.prototype.act = function() {
13 return "Base-Act-"+form;
14 }
15
16