<!--
function BrowserIsNN4 ( ) {
    if( this.type == 3 ) {
	return 1;
    }
    return 0;
}

function BrowserIsNN6 ( ) {
    if( this.type == 2 ) {
	return 1;
    }
    return 0;
}

function BrowserIsIE ( ) {
    if( this.type == 0 ) {
	return 1;
    }
    return 0;
}

function BrowserIsOpera ( ) {
    if( this.type == 1 ) {
	return 1;
    }
    return 0;
}

function BrowserIsIEs ( ) {
    if( this.type >= 0 && this.type <= 2 ) {
	return 1;
    }
    return 0;
}

function Browsers ( ) {
    this.isNN4 = BrowserIsNN4;
    this.isNN6 = BrowserIsNN6;
    this.isIE = BrowserIsIE;
    this.isOpera = BrowserIsOpera;
    this.isIEs = BrowserIsIEs;
    if(document.all){
	if( navigator.userAgent.search( /Opera/ ) == -1 ) {
	    this.type = 0;
	} else {
	    this.type = 1;
	}
    } else if(document.layers){
	this.type = 3;
    } else if(document.getElementById){
	this.type = 2;
    }
}

function winOpen ( ) {
	wo=window.open("map.html","map", "toolbar=No,location=No,directories=no,status=No,menubar=yes, scrollbars=No,resizable=yes,width=640,height=500");
	wo.focus();
}

//-->
