
function OpMarkerNamespace() {

var n4=(document.layers);
var n6=(document.getElementById&&!document.all);
var ie=(document.all);
var o6=(navigator.appName.indexOf("Opera") != -1);
var safari=(navigator.userAgent.indexOf("Safari") != -1);
var currentSpan = new GBounds();
var name = "";


function OpMarker( a, b, Name ) {    
    this.inheritFrom = GMarker;
    this.inheritFrom(a,b);
    if ( !currentSpan.minX || a.x < currentSpan.minX ) currentSpan.minX = a.x;
    if ( !currentSpan.maxX || a.x > currentSpan.maxX ) currentSpan.maxX = a.x;
    if ( !currentSpan.minY || a.y < currentSpan.minY ) currentSpan.minY = a.y;
    if ( !currentSpan.maxY || a.y > currentSpan.maxY ) currentSpan.maxY = a.y;
    if ( typeof name != "undefined" ) {
        this.setName(Name);
    }
}

OpMarker.prototype = new GMarker(new GLatLng(1, 1));

OpMarker.prototype.setName = function( string ) {    
    this.name = string;
};

OpMarker.prototype.getName = function() {    
   return this.name ;
};

function makeInterface(a) {
    var b = a || window;
    b.OpMarker = OpMarker;
}

makeInterface();
}

OpMarkerNamespace();


