
	function MapWindow(url,name,w,h) {

		var l = (screen.width - w) / 2;
		var t = (screen.height - h) / 2;
		window.open(url,name,'width=' + w + ',height=' + h + ',left=' + l + ',top=' + t + ',resizable=yes,scrollbars=yes,toolbar=no,menubar=no,status=no,location=no,screenX=10,screenY=10;');

	}

	function NewWindow(url,name,w,h) {

		var l = (screen.width - w) / 2;
		var t = (screen.height - h) / 2;
		window.open(url,name,'width=' + w + ',height=' + h + ',left=' + l + ',top=' + t + ',resizable=yes,scrollbars=no,toolbar=no,menubar=no,status=no,location=no,screenX=10,screenY=10;');

	}

	function TellAFriend() {

		var w = 410;
		var h = 435;
		var l = (screen.width - w) / 2;
		var t = (screen.height - h) / 2;
		window.open('http://www.flashimap.com/tellafriend.php','TellAFriend','width=' + w + ',height=' + h + ',left=' + l + ',top=' + t + ',resizable=no,scrollbars=auto,toolbar=no,menubar=no,status=no,location=no;');

	}

	function FullScreen(url,name,w,h) {

		var l = (screen.width - w) / 2;
		var t = (screen.height - h) / 2;
		window.open(url,name,'width=' + w + ',height=' + h + ',left=' + l + ',top=' + t + ',resizable=yes,scrollbars=yes,toolbar=no,menubar=no,status=no,location=no,screenX=10,screenY=10;');

	}
