// JavaScript Document

function openwin() {
wizWindow = window.open("","windowRef","width=240,height=240,screenX=10,screenY=10,top=10,left=10,toolbar=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no location=no" );
wizWindow.location.href ="map.html"
if (!wizWindow.opener) wizWindow.opener = self;}
function donothing() {;}
// -->


 <!--

var win=null;
function NewWindow(mypage,myname,w,h,pos,infocus){
if(pos=="random"){myleft=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;mytop=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=="center"){myleft=(screen.width)?(screen.width-w)/2:100;mytop=(screen.height)?(screen.height-h)/2:100;}
else if((pos!='center' && pos!="random") || pos==null){myleft=0;mytop=20}
settings="width=" + w + ",height=" + h + ",top=" + mytop + ",left=" + myleft + ", ,titlebar=no, scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no";win=window.open(mypage,myname,settings);
win.focus();}
// -->
var d = document;
	function showpic(pic) {
		if (d.images) {
			d.images['bigpic'].src = ""+pic;
		}
	}



<!--
var message="Sorry, that function is disabled."; 

function click(e) {

if (document.all) {

if (event.button == 2) {

alert(message);

return false;

}

}

if (document.layers) {

if (e.which == 3) {

alert(message);

return false;

}

}

}

if (document.layers) {

document.captureEvents(Event.MOUSEDOWN);

}

document.onmousedown=click;

// --> 


