o8="Object"; 
o8_nn=1.0; 
o8_ie=3; 
o8_ecma=1;
o8_nnref="http://developer.netscape.com/docs/manuals/js/core/jsref15/object.html";
o8_ieref="http://msdn.microsoft.com/library/en-us/script56/html/js56jsobjObject.asp";
o8_ecmaref="http://www.ecma.ch/ecma1/STAND/ECMA-262.HTM";
o8_syntax="objectName=new Object([value]);";
o8_txt="Provides functionality common to all JavaScript objects.";
o8_ex1_0="point = new Object();";
o8_ex1_1="point.x=17;";
o8_ex1_2="point.y=22;";
o8_ex1_3="  ";
o8_ex1_4="alert(point.x+' : '+point.y)";
o8_ex1_5="  ";
o8_ex1_6="// Would alert: 17 : 22";


o8_p0="constructor"; 
o8_p0_nn=1.1; 
o8_p0_ie=3; 
o8_p0_ecma=1;
o8_p0_nnref="http://developer.netscape.com/docs/manuals/js/core/jsref15/object.html#1193229";
o8_p0_ieref="http://msdn.microsoft.com/library/en-us/script56/html/js56jsproconstructor.asp";
o8_p0_ecmaref="http://www.ecma.ch/ecma1/STAND/ECMA-262.HTM";
o8_p0_syntax="objectName.constructor"; 
o8_p0_txt="Reference to the function that created an object.";
o8_p0_ex1_0="myObject = new Object();";
o8_p0_ex1_1="if (myObject.constructor==Boolean) alert('This is a Boolean');";
o8_p0_ex1_2="if (myObject.constructor==Date) alert('This is a Date');";
o8_p0_ex1_3="if (myObject.constructor==Object) alert('This is an Object');";
o8_p0_ex1_4='// Would alert "This is an Object"';
o8_p0_ex2_0='You might expect that this example would alert "Date":';
o8_p0_ex2_1=" ";
o8_p0_ex2_2="myDate = new Date();";
o8_p0_ex2_3=" alert(myDate.constructor);";
o8_p0_ex2_4=" ";
o8_p0_ex2_5="But constructor is a reference to the creating function itself";
o8_p0_ex2_6="So this example would alert something like:";
o8_p0_ex2_7="function Date() { [native code] }";

o8_p1="prototype"; 
o8_p1_nn=1.1; 
o8_p1_ie=3; 
o8_p1_ecma=1; 
o8_p1_nnref="http://developer.netscape.com/docs/manuals/js/core/jsref15/object.html#1193255";
o8_p1_ieref="http://msdn.microsoft.com/library/en-us/script56/html/js56jsproprototype.asp";
o8_p1_ecmaref="http://www.ecma.ch/ecma1/STAND/ECMA-262.HTM";
o8_p1_syntax="Number.prototype.methodName = functionName"; 
o8_p1_txt="Creates a new method for Number objects";
o8_p1_ex1_0="function createdDate(){";
o8_p1_ex1_1="var thisDate=new Date();";
o8_p1_ex1_2="return thisDate.toString();";
o8_p1_ex1_3="}";
o8_p1_ex1_4="Object.prototype.created=createdDate();";
o8_p1_ex1_5="myObject=new Object();";
o8_p1_ex1_6="alert(myObject.created);";
o8_p1_ex1_7=" ";
o8_p1_ex1_8="// Would alert the objects creation date, for example: Thu Feb 7 22:10:11 UTC+0100 2002";








o8_m0="toLocaleString()"; 
o8_m0_nn=0; 
o8_m0_ie=1; 
o8_m0_ecma=1; 
o8_m0_nnref="http://developer.netscape.com/docs/manuals/communicator/jsref/corea1.htm";
o8_m0_ieref="http://msdn.microsoft.com/library/en-us/script56/html/js56jsmthtolocalestring.asp";
o8_m0_ecmaref="http://www.ecma.ch/ecma1/STAND/ECMA-262.HTM";
o8_m0_syntax="objectName.toLocaleString()";
o8_m0_txt="String value of an object, in local value format.";
o8_m0_ex1_0="myObject=new Object(743156);";
o8_m0_ex1_1="alert(myObject.toLocaleString());";
o8_m0_ex1_2=" ";
o8_m0_ex1_3="// Would alert a number in local value format (for example 743.156,00)";
o8_m0_parameters="None.";
o8_m0_returned='String. (For example 678.541,32)<br>&nbsp; - the format varies with different browsers and different country specific settings.';

o8_m1="toSource()"; 
o8_m1_nn=1.3; 
o8_m1_ie=0; 
o8_m1_ecma=0; 
o8_m1_nnref="http://developer.netscape.com/docs/manuals/js/core/jsref15/object.html#1193350";
o8_m1_ieref="http://msdn.microsoft.com/library/en-us/script56/html/js56jsobjObject.asp";
o8_m1_ecmaref="http://www.ecma.ch/ecma1/STAND/ECMA-262.HTM";
o8_m1_syntax="objectName.toSource()";
o8_m1_txt="Object literal representing the specified object.";
o8_m1_ex1_0="function Dog(name,breed,color,sex) {";
o8_m1_ex1_1="this.name=name";
o8_m1_ex1_2="this.breed=breed";
o8_m1_ex1_3="this.color=color";
o8_m1_ex1_4="this.sex=sex";
o8_m1_ex1_5="}";
o8_m1_ex1_6='theDog = new Dog("Gabby","Lab","chocolate","girl")';
o8_m1_ex1_7='alert(theDog.toSource());';
o8_m1_ex1_8='// Would alert: {name:"Gabby", breed:"Lab", color:"chocolate", sex:"girl"}';
o8_m1_parameters="radix: Optional.<br>&nbsp;Specifies a radix for converting numeric values to strings.<br>&nbsp;This value is only used for numbers.";
o8_m1_returned='Returns the textual representation of the object.';

o8_m2="toString()"; 
o8_m2_nn=1.0; 
o8_m2_ie=1; 
o8_m2_ecma=1; 
o8_m2_nnref="http://developer.netscape.com/docs/manuals/js/core/jsref15/object.html#1193350";
o8_m2_ieref="http://msdn.microsoft.com/library/en-us/script56/html/js56jsmthtostring.asp";
o8_m2_ecmaref="http://www.ecma.ch/ecma1/STAND/ECMA-262.HTM";
o8_m2_syntax="objectName.toString([radix])";
o8_m2_txt="Returns a string representing the object.";
o8_m2_ex1_0="yourObject=new Object(10);";
o8_m2_ex1_1="alert(yourObject+5);";
o8_m2_ex1_2="// Would alert 15";
o8_m2_ex1_3=" ";
o8_m2_ex1_4="myObject=new Object(10);";
o8_m2_ex1_5="alert(myObject.toString()+5);";
o8_m2_ex1_6="// Would alert 105";
o8_m2_ex1_7=" ";
o8_m2_ex1_8="myObject=new Object(255);";
o8_m2_ex1_9="alert(myObject.toString(2)+5); // (Note radix=2)";
o8_m2_ex1_10="// Would alert 111111115 (Binary 255 plus 5)";
o8_m2_ex1_11=" ";
o8_m2_ex1_12="myObject=new Object(255);";
o8_m2_ex1_13="alert(myObject.toString(16)+5); // (Note radix=16)";
o8_m2_ex1_14="// Would alert ff5 (Hexadecimal 255 plus 5)";
o8_m2_parameters="radix: Optional.<br>&nbsp;Specifies a radix for converting numeric values to strings.<br>&nbsp;This value is only used for numbers.";
o8_m2_returned='Returns the textual representation of the object.';

o8_m3="unwatch()"; 
o8_m3_nn=1.2; 
o8_m3_ie=0; 
o8_m3_ecma=0;
o8_m3_nnref="http://developer.netscape.com/docs/manuals/js/core/jsref15/object.html#1193499";
o8_m3_ieref="http://msdn.microsoft.com/library/en-us/script56/html/js56jsobjObject.asp";
o8_m3_ecmaref="http://www.ecma.ch/ecma1/STAND/ECMA-262.HTM";
o8_m3_syntax="objectName.unwatch(prop)";
o8_m3_txt="Removes a watchpoint set with the watch method.";
o8_m3_ex1_0="point=new Object();";
o8_m3_ex1_1="point.watch('y',function (id,oldval,newval) {alert(id+' : '+oldval+' TO '+newval)} );";
o8_m3_ex1_2=" ";
o8_m3_ex1_3="point.x=17;";
o8_m3_ex1_4="point.y=22;";
o8_m3_ex1_5="// Would alert: y : undefined TO 22";
o8_m3_ex1_6=" ";
o8_m3_ex1_7="point.y=33;";
o8_m3_ex1_8="// Would alert: y : undefined TO 33";
o8_m3_ex1_9=" ";
o8_m3_ex1_10="point.unwatch();";
o8_m3_ex1_11="point=16;";
o8_m3_ex1_12="// Would not cause an alert cause the watch was disabled with point.unwatch()";
o8_m3_parameters="prop: The name of a property of the object.";
o8_m3_returned='None.';

o8_m4="valueOf()"; 
o8_m4_nn=1.1; 
o8_m4_ie=2; 
o8_m4_ecma=1;
o8_m4_nnref="http://developer.netscape.com/docs/manuals/js/core/jsref15/object.html#1193540";
o8_m4_ieref="http://msdn.microsoft.com/library/en-us/script56/html/js56jsmthvalueof.asp";
o8_m4_ecmaref="http://www.ecma.ch/ecma1/STAND/ECMA-262.HTM";
o8_m4_syntax="objectName.valueOf();";
o8_m4_txt="Primitive value of the specified object.";
o8_m4_ex1_0="myObject=new Object(65);";
o8_m4_ex1_1="alert(myObject.valueOf());";
o8_m4_ex1_2="// Would alert: 65";

o8_m4_parameters="None.";
o8_m4_returned='Returns the primitive value of the specified object.';

o8_m5="watch()"; 
o8_m5_nn=1.2; 
o8_m5_ie=0; 
o8_m5_ecma=0;
o8_m5_nnref="http://developer.netscape.com/docs/manuals/js/core/jsref15/object.html#1193628";
o8_m5_ieref="http://msdn.microsoft.com/library/en-us/script56/html/js56jsobjObject.asp";
o8_m5_ecmaref="http://www.ecma.ch/ecma1/STAND/ECMA-262.HTM";
o8_m5_syntax="objectName.watch(prop, handler)";
o8_m5_txt="Runs a function when specific property is assigned value.";
o8_m5_ex1_0="point=new Object();";
o8_m5_ex1_1="point.watch('y',function (id,oldval,newval) {alert(id+' : '+oldval+' TO '+newval)} );";
o8_m5_ex1_2=" ";
o8_m5_ex1_3="point.x=17;";
o8_m5_ex1_4="point.y=22;";
o8_m5_ex1_5="// Would alert: y : undefined TO 22";
o8_m5_ex1_6=" ";
o8_m5_ex1_7="point.y=33;";
o8_m5_ex1_8="// Would alert: y : undefined TO 33";
o8_m5_ex1_9=" ";
o8_m5_ex1_10="point.unwatch();";
o8_m5_ex1_11="point=16;";
o8_m5_ex1_12="// Would not cause an alert cause the watch was disabled with point.unwatch()";
o8_m5_parameters="prop: The name of a property of the object.<br>&nbsp;handler: A function that is executed when prop is assigned a value.";
o8_m5_returned='None.';