/*  --------------------------------------------------------------
	!!! prototype : voir index.php, proto_ie.js et proto_ff.js !!!
*/
prototyped.prototype.hasprototype = true;

// voir checkbox.js->button_checkbox : valeur du button_checkbox
prototyped.prototype.cvalue = 0;

// voir popup_xml.js->append_map_point() : positionnement du popup
prototyped.prototype.position = function() {
	var x   = this.offsetLeft;
	var y   = this.offsetTop;
	var obj = this.offsetParent;

	while (obj != null) {
		x   += obj.offsetLeft;
		y   += obj.offsetTop;
		obj  = obj.offsetParent;
	}
	return {left:x, top:y};
};
