	function openMap()
	{
		x = window.screenLeft + 200;
		y = window.screenTop + 50;

		s = "left=" + x +", top=" + y + ", width=350, height=500, toolbar=no, menubar=no, location=no, statusbar=no, directories=no"

		try
		{
			window.open ("../maps/leinster.htm", "Leinster", s);
		}
		catch (e) {};
	}

	function dictionaryMap(mapname, wintitle, left, top, width, height)
	{
		var x, y, s;

		x = window.screenLeft + left;
		y = window.screenTop + top;

		s = "left=" + x +", top=" + y + ", width=" + width + ", height=" + height + ", toolbar=no, menubar=no, location=no, statusbar=no, directories=no";

		try
		{
			window.open (mapname, wintitle, s);
		}
		catch (e) {};
	}

	function noRightClick()
	{
		if (event.button==2)
			alert('Feature Disabled.');
	}

	function dictionaryWord(word, url, left, top)
	{
		dictionaryWord(word, url, left, top, 450, 100, "no");
	}

	function dictionaryWord(word, url, left, top, width, height)
	{
		dictionaryword(word, url, left, top, width, height, "no");
	}

	function dictionaryWord(word, url, left, top, width, height, scrollbars)
	{
		var x, y, s;
		
		x = window.screenLeft + left;
		y = window.screenTop + top;

		s = "left=" + x +", top=" + y + ", width=" + width +", height=" + height +", toolbar=no, menubar=no, location=no, statusbar=no, directories=no, scrollbars=" + scrollbars;

		try
		{
			window.open (url, word, s);
		}
		catch (e) {};
	}

	document.onmousedown=noRightClick;
