<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Australian Geographical Quiz - RJM Programming - January, 2017 ... Thanks to Australian Geographic for brilliant underlying map</title>
<!--
How to install the image map:
Copy and paste the img, map and area blocks into the body of your page.
This imagemap is created at Mobilefish.com.
http://www.mobilefish.com/services/image_map/image_map.php
-->
<script type='text/javascript'>
var nearestlist=["","",""];
var places=[];
var coords=[];
var strcoords=[];
var midcoords=[];
var realclick=true;
var placepick=-1;
var score=0;
var goes=0;
var factor=3;
var placechosen='';
var verycold=150000.0;
var cold=110000.0;
var cool=80000.0;
var warm=35000.0;
var verywarm=5000.0;
var yto=null;
var ago=null;
var lgo=null;
var pathto="http://www.rjmprogramming.com.au/HTMLCSS/";
//pathto="http://localhost:8888/";
function distaway(from, hco, to) {
var jwhich=places.indexOf(from.replace(/_/g,' '));
//alert(from.replace(/_/g,' ') + ' ' + jwhich + ' eg. ' + places[placepick]);
var distco=((midcoords[jwhich][0] - midcoords[placepick][0]) * (midcoords[jwhich][0] - midcoords[placepick][0])) + ((midcoords[jwhich][1] - midcoords[placepick][1]) * (midcoords[jwhich][1] - midcoords[placepick][1]));
if (distco <= verywarm) {
return " ... you are very warm (and it's possible there is an overlap, so you score the 0.5 choosing this with OK button) ";
} else if (distco <= warm) {
return ' ... you are warm ';
} else if (distco <= cool) {
return ' ... you are cool ';
} else if (distco <= cold) {
return ' ... you are cold ';
}
return ' ... you are very cold ';
}
function resetit() {
realclick=true;
}
function icheck(evt) {
if (realclick) {
var x,y;
if (evt.clientX || evt.clientY) {
x = evt.clientX;
y = evt.clientY;
} else {
x = evt.pageX;
y = evt.pageY;
}
var distco=((x - midcoords[placepick][0]) * (x - midcoords[placepick][0])) + ((y - midcoords[placepick][1]) * (y - midcoords[placepick][1]));
var halfpoint='';
var davw=' ... you are very cold ';
if (distco <= verywarm) {
halfpoint='0.5';
davw=" ... you are very warm (and it's possible there is an overlap, so you score the 0.5 choosing this with OK button) ";
} else if (distco <= warm) {
davw=' ... you are warm ';
} else if (distco <= cool) {
davw=' ... you are cool ';
} else if (distco <= cold) {
davw=' ... you are cold ';
}
var nearestplace='';
var nearestdistco=-1;
for (var jwhich=0; jwhich<midcoords.length; jwhich++) {
distco=((midcoords[jwhich][0] - x) * (midcoords[jwhich][0] - x)) + ((midcoords[jwhich][1] - y) * (midcoords[jwhich][1] - y));
if (jwhich == 0) {
nearestplace=places[jwhich].replace(/_/g,' ');
nearestdistco=distco;
} else if (distco < nearestdistco) {
nearestplace=places[jwhich].replace(/_/g,' ');
nearestdistco=distco;
}
}
goes++;
if (nearestplace == placechosen.replace(/_/g,' ')) {
score+=factor;
setTimeout(resetit, 200);
setTimeout(pickone,1000);
} else {
var ans=prompt('You clicked nearest to ' + nearestplace + ' (0 for YouTube search, -0 for Australian Geographic search, +0 Both, 0.0 for Context in Map Legend) but we wanted you to identify ' + placechosen.replace(/_/g,' ') + ' (1 for YouTube search, -1 for Australian Geographic search, +1 Both, 1.1 for Context in Map Legend)' + davw + ' ... try again ... or ... Choose to Cancel', halfpoint);
if (ans == null) {
//alert(92);
setTimeout(pickone,2000);
} else if (ans == '0.0') {
if (lgo != null) lgo.close();
lgo=window.open(pathto + 'legend_via_map.htm?url=' + encodeURIComponent(document.URL.split('?')[0].split('#')[0]) + '&tarea=&submit=Create+Legend+for+HTML+Map+Data&whereami=where-am-i&whatami=what-am-i&secret=secret#' + nearestplace.replace(/ /g,'_'), '_blank');
} else if (ans == '1.1') {
if (lgo != null) lgo.close();
lgo=window.open(pathto + 'legend_via_map.htm?url=' + encodeURIComponent(document.URL.split('?')[0].split('#')[0]) + '&tarea=&submit=Create+Legend+for+HTML+Map+Data&whereami=where-am-i&whatami=what-am-i&secret=secret#' + placechosen.replace(/ /g,'_'), '_blank');
} else if (ans == '-0') {
if (ago != null) ago.close();
ago=window.open('http://www.australiangeographic.com.au/search/search?query=' + nearestplace.replace(/ /g,'%20').replace(/_/g,'%20'),'_blank','top=15,left=15,width=300,height=300');
} else if (ans == '-1') {
if (ago != null) ago.close();
ago=window.open('http://www.australiangeographic.com.au/search/search?query=' + placechosen.replace(/ /g,'%20').replace(/_/g,'%20'),'_blank','top=15,left=15,width=300,height=300');
} else if (ans.replace('+','') == '0') {
if (yto == null) {
if (document.title.indexOf('Country ') != 0) document.title='Country ' + document.title;
document.getElementById('youtube').innerHTML='<a ontouchstart=" realclick=false; setTimeout(resetit,1000); " onclick=" realclick=false; setTimeout(resetit,1000);" title="Back to top" href="#iag">Back to top</a><iframe style=width:900px;height:700px; id=iyto src="' + pathto + 'karaoke_youtube_api.htm?emoji=on&nokaraoke=y&youtubeid=%20%20%20%20%20%20%20' + nearestplace.replace(/ /g,'%20').replace(/_/g,'%20') + '"></iframe>';
yto=document.getElementById('iyto');
} else {
yto.src=pathto + 'karaoke_youtube_api.htm?emoji=on&nokaraoke=y&youtubeid=%20%20%20%20%20%20%20' + nearestplace.replace(/ /g,'%20').replace(/_/g,'%20');
}
if (ans == '+0') {
if (ago != null) ago.close();
ago=window.open('http://www.australiangeographic.com.au/search/search?query=' + nearestplace.replace(/ /g,'%20').replace(/_/g,'%20'),'_blank','top=15,left=15,width=300,height=300');
}
location.href='#iyto';
} else if (ans.replace('+','') == '1') {
if (yto == null) {
if (document.title.indexOf('Country ') != 0) document.title='Country ' + document.title;
document.getElementById('youtube').innerHTML='<a ontouchstart=" realclick=false; setTimeout(resetit,1000); " onclick=" realclick=false; setTimeout(resetit,1000);" title="Back to top" href="#iag">Back to top</a><iframe style=width:900px;height:700px; id=iyto src="' + pathto + 'karaoke_youtube_api.htm?emoji=on&nokaraoke=y&youtubeid=%20%20%20%20%20%20%20' + placechosen.replace(/ /g,'%20').replace(/_/g,'%20') + '"></iframe>';
yto=document.getElementById('iyto');
} else {
yto.src=pathto + 'karaoke_youtube_api.htm?emoji=on&nokaraoke=y&youtubeid=%20%20%20%20%20%20%20' + placechosen.replace(/ /g,'%20').replace(/_/g,'%20');
}
if (ans == '+1') {
if (ago != null) ago.close();
ago=window.open('http://www.australiangeographic.com.au/search/search?query=' + placechosen.replace(/ /g,'%20').replace(/_/g,'%20'),'_blank','top=15,left=15,width=300,height=300');
}
location.href='#iyto';
} else if (ans == '0.5') {
score+=0.5;
setTimeout(pickone,2000);
}
setTimeout(resetit, 200);
}
document.getElementById('score').innerHTML='Score: ' + score + '/' + goes;
}
return '';
}
function check(huh) {
//alert(huh.coords);
var davw='', halfpoint='';
realclick=false;
if (placepick >= 0) {
goes++;
if (huh.coords == strcoords[placepick] || placechosen.replace(/_/g,' ') == huh.alt.replace(/_/g,' ')) {
score+=factor;
setTimeout(resetit, 200);
setTimeout(pickone,1000);
} else {
davw=distaway(huh.alt.replace(/_/g,' '), huh.coords, placechosen.replace(/_/g,' '));
if (davw.indexOf(' very warm') != -1) halfpoint='0.5';
var ans=prompt('You clicked ' + huh.alt.replace(/_/g,' ') + ' (0 for YouTube search, -0 for Australian Geographic search, +0 Both, 0.0 for Context in Map Legend) but we wanted you to identify ' + placechosen.replace(/_/g,' ') + ' (1 for YouTube search, -1 for Australian Geographic search, +1 Both, 1.1 for Context in Map Legend)' + davw + ' ... try again ... or ... Choose to Cancel', halfpoint);
if (ans == null) {
//alert(92);
setTimeout(pickone,2000);
} else if (ans == '0.0') {
if (lgo != null) lgo.close();
lgo=window.open(pathto + 'legend_via_map.htm?url=' + encodeURIComponent(document.URL.split('?')[0].split('#')[0]) + '&tarea=&submit=Create+Legend+for+HTML+Map+Data&whereami=where-am-i&whatami=what-am-i&secret=secret#' + huh.alt.replace(/ /g,'_'), '_blank');
} else if (ans == '1.1') {
if (lgo != null) lgo.close();
lgo=window.open(pathto + 'legend_via_map.htm?url=' + encodeURIComponent(document.URL.split('?')[0].split('#')[0]) + '&tarea=&submit=Create+Legend+for+HTML+Map+Data&whereami=where-am-i&whatami=what-am-i&secret=secret#' + placechosen.replace(/ /g,'_'), '_blank');
} else if (ans == '-0') {
if (ago != null) ago.close();
ago=window.open('http://www.australiangeographic.com.au/search/search?query=' + huh.alt.replace(/ /g,'%20').replace(/_/g,'%20'),'_blank','top=15,left=15,width=300,height=300');
} else if (ans == '-1') {
if (ago != null) ago.close();
ago=window.open('http://www.australiangeographic.com.au/search/search?query=' + placechosen.replace(/ /g,'%20').replace(/_/g,'%20'),'_blank','top=15,left=15,width=300,height=300');
} else if (ans.replace('+','') == '0') {
if (yto == null) {
if (document.title.indexOf('Country ') != 0) document.title='Country ' + document.title;
document.getElementById('youtube').innerHTML='<a ontouchstart=" realclick=false; setTimeout(resetit,1000); " onclick=" realclick=false; setTimeout(resetit,1000);" title="Back to top" href="#iag">Back to top</a><iframe style=width:900px;height:700px; id=iyto src="' + pathto + 'karaoke_youtube_api.htm?emoji=on&nokaraoke=y&youtubeid=%20%20%20%20%20%20%20' + huh.alt.replace(/ /g,'%20').replace(/_/g,'%20') + '"></iframe>';
yto=document.getElementById('iyto');
} else {
yto.src=pathto + 'karaoke_youtube_api.htm?emoji=on&nokaraoke=y&youtubeid=%20%20%20%20%20%20%20' + huh.alt.replace(/ /g,'%20').replace(/_/g,'%20');
}
if (ans == '+0') {
if (ago != null) ago.close();
ago=window.open('http://www.australiangeographic.com.au/search/search?query=' + huh.alt.replace(/ /g,'%20').replace(/_/g,'%20'),'_blank','top=15,left=15,width=300,height=300');
}
location.href='#iyto';
} else if (ans.replace('+','') == '1') {
if (yto == null) {
if (document.title.indexOf('Country ') != 0) document.title='Country ' + document.title;
document.getElementById('youtube').innerHTML='<a ontouchstart=" realclick=false; setTimeout(resetit,1000); " onclick=" realclick=false; setTimeout(resetit,1000);" title="Back to top" href="#iag">Back to top</a><iframe style=width:900px;height:700px; id=iyto src="' + pathto + 'karaoke_youtube_api.htm?emoji=on&nokaraoke=y&youtubeid=%20%20%20%20%20%20%20' + placechosen.replace(/ /g,'%20').replace(/_/g,'%20') + '"></iframe>';
yto=document.getElementById('iyto');
} else {
yto.src=pathto + 'karaoke_youtube_api.htm?emoji=on&nokaraoke=y&youtubeid=%20%20%20%20%20%20%20' + placechosen.replace(/ /g,'%20').replace(/_/g,'%20');
}
if (ans == '+1') {
if (ago != null) ago.close();
ago=window.open('http://www.australiangeographic.com.au/search/search?query=' + placechosen.replace(/ /g,'%20').replace(/_/g,'%20'),'_blank','top=15,left=15,width=300,height=300');
}
location.href='#iyto';
} else if (ans == '0.5') {
score+=0.5;
setTimeout(pickone,2000);
}
setTimeout(resetit, 200);
}
document.getElementById('score').innerHTML='Score: ' + score + '/' + goes;
}
}
function pickone() {
placepick = Math.floor((Math.random()*(places.length))+0);
placechosen=places[placepick].replace(/_/g,' ');
document.getElementById('whereis').value=strcoords[placepick];
}
function atstart() {
var ainnards=[], innards="", coordset, cbits, im, jm, mapbits=document.getElementById('dm32085').innerHTML, mx, my;
//alert(mapbits);
var altbits=mapbits.split(' alt="');
for (im=1; im<altbits.length; im++) {
cbits=altbits[im].split(' coords="');
if (cbits.length > 1) {
coordset=cbits[1].split('"')[0].split(',');
mx=eval(coordset[0]);
my=eval(coordset[1]);
//alert(mx);
for (jm=2; jm<coordset.length; jm++) {
if (eval(jm % 2) == 0) {
mx=((mx * (jm / 2)) + eval(coordset[jm])) / (jm / 2 + 1);
} else {
my=((my * ((jm - 1) / 2)) + eval(coordset[jm])) / ((jm - 1) / 2 + 1);
}
}
places.push(altbits[im].split('"')[0].replace(/_/g,' '));
midcoords.push([mx,my]);
coords.push(coordset);
strcoords.push(cbits[1].split('"')[0]);
//innards+='<option title="' + mx + ',' + my + '" value="' + cbits[1].split('"')[0] + '">' + altbits[im].split('"')[0].replace(/_/g,' ') + '</option>';
ainnards.push('<option id="' + altbits[im].split('"')[0] + '_id" title="' + mx + ',' + my + '" value="' + cbits[1].split('"')[0] + '">' + altbits[im].split('"')[0].replace(/_/g,' ') + '</option>');
}
}
ainnards.sort();
for (im=0; im<ainnards.length; im++) {
innards+=ainnards[im];
}
//alert(innards);
document.getElementById('whereis').innerHTML+=innards;
setTimeout(pickone,5000);
}
</script>
</head>
<body onload=' atstart();' ontouchstart='icheck(event);' onclick='icheck(event);'>
<!-- START COPY -->
<img id='iag' src="http://www.rjmprogramming.com.au/HTMLCSS/agmap_difficult.jpg" usemap="#dm32085" width="1296" height="968" alt="click map" border="0" />
<map id="dm32085" name="dm32085">
<!-- Region 1 Kimberley -->
<area shape="poly" alt="Kimberley" title="Kimberley" coords="491,177,583,183,585,224,498,226,491,183" href="#Kimberley" target="_self" onClick="check(this);" />
<!-- Region 2 Simpson_Desert -->
<area shape="poly" alt="Simpson_Desert" title="Simpson_Desert" coords="750,396,821,396,814,464,761,457" href="#Simpson_Desert" target="_self" onClick="check(this);" />
<!-- Region 3 Tanami_Desert -->
<area shape="poly" alt="Tanami_Desert" title="Tanami_Desert" coords="612,236,685,234,678,296,623,298" href="#Tanami_Desert" target="_self" onClick="check(this);" />
<!-- Region 4 Strzlecki -->
<area shape="poly" alt="Strzlecki" coords="838,449,889,449,889,487,846,483" href="#Strzlecki" target="_self" onClick="check(this);" />
<!-- Region 5 Sturt_Stony_Desert -->
<area shape="poly" alt="Sturt_Stony_Desert" coords="829,466,878,479,869,521,829,510" href="#Sturt_Stony_Desert" target="_self" onClick="check(this);" />
<!-- Region 6 Tirari_Desert -->
<area shape="poly" alt="Tirari_Desert" coords="814,483,850,481,852,525,821,523,814,508" href="#Tirari_Desert" target="_self" onClick="check(this);" />
<!-- Region 7 Flinders_Ranges -->
<area shape="poly" alt="Flinders_Ranges" coords="829,627,801,612,842,536,878,557" href="#Flinders_Ranges" target="_self" onClick="check(this);" />
<!-- Region 8 Pedirka_Desert -->
<area shape="poly" alt="Pedirka_Desert" coords="727,432,789,451,782,479,740,466" href="#Pedirka Desert" target="_self" onClick="check(this);" />
<!-- Region 9 Victoria_Desert -->
<area shape="poly" alt="Victoria_Desert" coords="553,483,710,474,704,519,576,523" href="#Victoria_Desert" target="_self" onClick="check(this);" />
<!-- Region 10 Nullabor_Plain -->
<area shape="poly" alt="Nullabor_Plain" coords="540,555,661,557,663,591,542,593" href="#Nullabor_Plain" target="_self" onClick="check(this);" />
<!-- Region 11 Arnhem_Land -->
<area shape="poly" alt="Arnhem_Land" coords="706,83,772,92,767,132,704,124" href="#Arnhem_Land" target="_self" onClick="check(this);" />
<!-- Region 12 Kakadu_National_Park -->
<area shape="poly" alt="Kakadu_National_Park" coords="665,92,689,96,691,126,663,126" href="#Kakadu_National_Park" target="_self" onClick="check(this);" />
<!-- Region 13 Katherine_Gorge -->
<area shape="poly" alt="Katherine_Gorge" coords="668,119,693,126,693,145,668,134" href="#Katherine_Gorge" target="_self" onClick="check(this);" />
<!-- Region 14 Judbarra_Gregory_National_Park -->
<area shape="poly" alt="Judbarra_Gregory_National_Park" coords="610,187,634,190,638,219,612,219,610,213" href="#Judbarra_Gregory_National_Park" target="_self" onClick="check(this);" />
<!-- Region 15 Tiwi_Islands -->
<area shape="poly" alt="Tiwi_Islands" coords="587,39,642,51,638,77,585,75" href="#Tiwi_Islands" target="_self" onClick="check(this);" />
<!-- Region 16 Great_Sandy_Desert -->
<area shape="poly" alt="Great_Sandy_Desert" coords="434,296,508,300,489,364,440,368" href="#Great_Sandy_Desert" target="_self" onClick="check(this);" />
<!-- Region 17 King_Leopold_Ranges -->
<area shape="poly" alt="King_Leopold_Ranges" coords="487,207,557,219,547,243,487,230" href="#King_Leopold_Ranges" target="_self" onClick="check(this);" />
<!-- Region 18 Channel_Country -->
<area shape="poly" alt="Channel_Country" coords="838,451,897,462,897,500,967,489,984,389,944,366" href="#Channel_Country" target="_self" onClick="check(this);" />
<!-- Region 19 Wellesley_Islands -->
<area shape="poly" alt="Wellesley_Islands" coords="861,177,906,177,893,213,863,215" href="#Wellesley_Islands" target="_self" onClick="check(this);" />
<!-- Region 20 Cape_York_Peninsula -->
<area shape="poly" alt="Cape_York_Peninsula" coords="925,83,969,88,971,166,927,170" href="#Cape_York_Peninsula" target="_self" onClick="check(this);" />
<!-- Region 21 Grey_Range -->
<area shape="poly" alt="Grey_Range" coords="910,504,959,464,976,489,931,536" href="#Grey_Range" target="_self" onClick="check(this);" />
<!-- Region 22 Great_Dividing_Range_in_Queensland -->
<area shape="poly" alt="Great_Dividing_Range_in_Queensland" coords="1003,283,1044,283,1048,372,1097,440,1118,466,1086,487,1044,417,1014,364" href="#Great_Dividing_Range_in_Queensland" target="_self" onClick="check(this);" />
<!-- Region 23 Blue_Mountains -->
<area shape="poly" alt="Blue_Mountains" coords="1095,672,1118,676,1114,693,1097,687" href="#Blue_Mountains" target="_self" onClick="check(this);" />
<!-- Region 24 Kosciuszko_National_Park -->
<area shape="poly" alt="Kosciuszko_National_Park" coords="1027,721,1056,729,1054,750,1031,740" href="#Kosciuszko_National_Park" target="_self" onClick="check(this);" />
<!-- Region 25 Murray_River -->
<area shape="poly" alt="Murray_River" coords="895,661,937,680,974,721,997,727,1005,746,954,723,927,691,891,678" href="#Murray_River" target="_self" onClick="check(this);" />
<!-- Region 26 Darling_River -->
<area shape="poly" alt="Darling_River" coords="906,676,916,619,933,593,957,570,969,583,948,623,931,649,918,680" href="#Darling_River" target="_self" onClick="check(this);" />
<!-- Region 27 Murrumbidgee_River -->
<area shape="poly" alt="Murrumbidgee_River" coords="965,680,999,678,1003,699,969,702" href="#Murrumbidgee_River" target="_self" onClick="check(this);" />
<!-- Region 28 Cameron_Corner -->
<area shape="poly" alt="Cameron_Corner" coords="882,517,908,521,908,538,884,534" href="#Cameron_Corner" target="_self" onClick="check(this);" />
<!-- Region 29 Poeppel_Corner -->
<area shape="poly" alt="Poeppel_Corner" coords="808,436,838,436,835,462,812,459" href="#Poeppel_Corner" target="_self" onClick="check(this);" />
<!-- Region 30 Surveyor_Generals_Corner -->
<area shape="poly" alt="Surveyor_Generals_Corner" coords="595,436,625,434,619,457,598,453" href="#Surveyor_Generals_Corner" target="_self" onClick="check(this);" />
<!-- Region 31 Gregory_Range -->
<area shape="poly" alt="Gregory_Range" coords="916,245,967,296,986,272,933,221" href="#Gregory_Range" target="_self" onClick="check(this);" />
<!-- Region 32 Great_Barrier_Reef -->
<area shape="poly" alt="Great_Barrier_Reef" coords="1052,232,1071,226,1144,300,1165,334,1146,345,1088,268" href="#Great_Barrier_Reef" target="_self" onClick="check(this);" />
<!-- Region 33 Torres_Strait -->
<area shape="poly" alt="Torres_Strait" coords="929,13,971,15,965,41,933,37" href="#Torres_Strait" target="_self" onClick="check(this);" />
<!-- Region 34 Bass_Strait -->
<area shape="poly" alt="Bass_Strait" coords="952,818,1059,827,1046,859,961,850" href="#Bass_Strait" target="_self" onClick="check(this);" />
<!-- Region 35 Franklin_River -->
<area shape="poly" alt="Franklin_River" coords="978,899,982,925,995,920,982,895" href="#Franklin_River" target="_self" onClick="check(this);" />
<!-- Region 36 Tasman_Peninsula -->
<area shape="poly" alt="Tasman_Peninsula" coords="1027,933,1044,933,1039,948,1029,946" href="#Tasman_Peninsula" target="_self" onClick="check(this);" />
<!-- Region 37 Freycinet_Peninsula -->
<area shape="poly" alt="Freycinet_Peninsula" coords="1037,903,1050,906,1048,914,1037,914" href="#Freycinet_Peninsula" target="_self" onClick="check(this);" />
<!-- Region 38 Tweed_River -->
<area shape="poly" alt="Tweed_River" coords="1201,534,1169,532,1167,544,1199,547" href="#Tweed_River" target="_self" onClick="check(this);" />
<!-- Region 39 Durack_Range -->
<area shape="poly" alt="Durack_Range" coords="542,228,559,187,578,190,570,236" href="#Durack_Range" target="_self" onClick="check(this);" />
<!-- Region 40 Uluru -->
<area shape="poly" alt="Uluru" coords="640,430,668,430,668,440,646,438" href="#Uluru" target="_self" onClick="check(this);" />
<!-- Region 41 Lake_Eyre -->
<area shape="poly" alt="Lake_Eyre" coords="795,498,797,530,814,530,806,502" href="#Lake_Eyre" target="_self" onClick="check(this);" />
<!-- Region 42 Gawler_Ranges -->
<area shape="poly" alt="Gawler_Ranges" coords="748,608,774,606,770,623,750,623" href="#Gawler_Ranges" target="_self" onClick="check(this);" />
<!-- Region 43 Eyre_Peninsula -->
<area shape="poly" alt="Eyre_Peninsula" coords="759,636,791,642,780,672,761,670" href="#Eyre_Peninsula" target="_self" onClick="check(this);" />
<!-- Region 44 Pilbara -->
<area shape="poly" alt="Pilbara" coords="302,364,362,360,364,413,304,411" href="#Pilbara" target="_self" onClick="check(this);" />
<!-- Region 45 Great_Australian_Bight -->
<area shape="poly" alt="Great_Australian_Bight" coords="525,644,680,619,723,661,714,682,653,657,536,670" href="#Great_Australian_Bight" target="_self" onClick="check(this);" />
<!-- Region 46 Lake_Mackay -->
<area shape="poly" alt="Lake_Mackay" coords="581,360,602,343,608,360,595,372" href="#Lake_Mackay" target="_self" onClick="check(this);" />
<!-- Region 47 Little_Sandy_Desert -->
<area shape="poly" alt="Little_Sandy_Desert" coords="413,423,491,419,489,455,421,457" href="#Little_Sandy_Desert" target="_self" onClick="check(this);" />
<!-- Region 48 Hunter_River -->
<area shape="poly" alt="Hunter_River" coords="1133,659,1107,646,1112,634,1141,646" href="#Hunter_River" target="_self" onClick="check(this);" />
<!-- Region 49 Mount_Buller -->
<area shape="poly" alt="Mount_Buller" coords="1010,759,1029,757,1029,767,1012,767" href="#Mount_Buller" target="_self" onClick="check(this);" />
<!-- Region 50 Riverina -->
<area shape="poly" alt="Riverina" coords="961,682,993,680,982,746,959,738" href="#Riverina" target="_self" onClick="check(this);" />
<!-- Region 51 Kangaroo_Island -->
<area shape="poly" alt="Kangaroo_Island" coords="793,706,814,708,814,725,797,721" href="#Kangaroo_Island" target="_self" onClick="check(this);" />
<!-- Region 52 Limmen_National_Park -->
<area shape="poly" alt="Limmen_National_Park" coords="731,149,755,149,755,177,742,177,738,166" href="#Limmen_National_Park" target="_self" onClick="check(this);" />
<!-- Region 53 Gulf_of_Carpentaria -->
<area shape="poly" alt="Gulf_of_Carpentaria" coords="821,115,903,113,897,170,829,173" href="#Gulf_of_Carpentaria" target="_self" onClick="check(this);" />
<!-- Region 54 Buccaneer_Archipelago -->
<area shape="poly" alt="Buccaneer_Archipelago" coords="430,185,459,187,468,211,455,215,425,200" href="#Buccaneer_Archipelago" target="_self" onClick="check(this);" />
<!-- Region 55 Diamantina_National_Park -->
<area shape="poly" alt="Diamantina_National_Park" coords="886,379,908,377,914,398,884,398" href="#Diamantina_National_Park" target="_self" onClick="check(this);" />
<!-- Region 56 Cape_Howe -->
<area shape="poly" alt="Cape_Howe" coords="1080,772,1107,784,1095,799,1073,787" href="#Cape_Howe" target="_self" onClick="check(this);" />
<!-- Region 57 Wilsons_Promontary -->
<area shape="poly" alt="Wilsons_Promontary" coords="1001,810,1033,810,1029,821,997,821" href="#Wilsons_Promontary" target="_self" onClick="check(this);" />
<!-- Region 58 Staaten_River_National_Park -->
<area shape="poly" alt="Staaten_River_National_Park" coords="931,194,957,196,957,215,933,211" href="#Staaten_River_National_Park" target="_self" onClick="check(this);" />
<!-- Region 59 Coral_Sea -->
<area shape="poly" alt="Coral_Sea" coords="1214,207,1286,211,1288,389,1241,381" href="#Coral_Sea" target="_self" onClick="check(this);" />
<!-- Region 60 Tasman_Sea -->
<area shape="poly" alt="Tasman_Sea" coords="1243,604,1294,606,1292,772,1220,765" href="#Tasman_Sea" target="_self" onClick="check(this);" />
<!-- Region 61 Dirk_Hartog_Island -->
<area shape="poly" alt="Dirk_Hartog_Island" coords="187,487,232,493,234,506,215,515" href="#Dirk_Hartog_Island" target="_self" onClick="check(this);" />
<!-- Region 62 North_West_Cape -->
<area shape="poly" alt="North_West_Cape" coords="234,372,262,372,253,400,236,398" href="#North_West_Cape" target="_self" onClick="check(this);" />
<!-- Region 63 Carnarvon_National_Park -->
<area shape="poly" alt="Carnarvon_National_Park" coords="1046,419,1078,425,1067,445,1050,436" href="#Carnarvon_National_Park" target="_self" onClick="check(this);" />
<!-- Region 64 Byron_Bay -->
<area shape="poly" alt="Byron_Bay" coords="1182,547,1207,553,1203,581,1184,576" href="#Byron_Bay" target="_self" onClick="check(this);" />
<!-- Region 65 Culgoa_National_Park -->
<area shape="poly" alt="Culgoa_National_Park" coords="1018,527,1039,532,1033,551,1018,542" href="#Culgoa_National_Park" target="_self" onClick="check(this);" />
<!-- Region 66 Cape_Melville -->
<area shape="poly" alt="Cape_Melville" coords="993,130,1027,132,1025,153,997,151" href="#Cape_Melville" target="_self" onClick="check(this);" />
<!-- Region 67 Timor_Sea -->
<area shape="poly" alt="Timor_Sea" coords="434,105,566,96,566,115,438,126" href="#Timor_Sea" target="_self" onClick="check(this);" />
<!-- Region 68 Arafura_Sea -->
<area shape="poly" alt="Arafura_Sea" coords="725,20,816,26,816,49,714,43" href="#Arafura_Sea" target="_self" onClick="check(this);" />
<!-- Region 69 Groote_Eylandt -->
<area shape="poly" alt="Groote_Eylandt" coords="778,113,804,119,799,143,782,141" href="#Groote_Eylandt" target="_self" onClick="check(this);" />
<!-- Region 70 Cape_Londonderry -->
<area shape="poly" alt="Cape_Londonderry" coords="523,122,559,102,566,117,540,147,525,141" href="#Cape_Londonderry" target="_self" onClick="check(this);" />
<!-- Region 71 Bonaparte_Archipelago -->
<area shape="poly" alt="Bonaparte_Archipelago" coords="451,141,504,141,485,173,453,164" href="#Bonaparte_Archipelago" target="_self" onClick="check(this);" />
<!-- Region 72 Ashmore_Reef -->
<area shape="poly" alt="Ashmore_Reef" coords="417,98,436,98,436,115,419,117" href="#Ashmore_Reef" target="_self" onClick="check(this);" />
<!-- Region 73 Eighty_Mile_Beach -->
<area shape="poly" alt="Eighty_Mile_Beach" coords="381,311,413,266,425,281,396,317" href="#Eighty_Mile_Beach" target="_self" onClick="check(this);" />
<!-- Region 74 Fraser_Island -->
<area shape="poly" alt="Fraser_Island" coords="1190,457,1212,442,1218,476,1197,470" href="#Fraser_Island" target="_self" onClick="check(this);" />
<!-- Region 75 Warrumbungle_National_Park -->
<area shape="poly" alt="Warrumbungle_National_Park" coords="1080,595,1090,595,1090,612,1076,612" href="#Warrumbungle_National_Park" target="_self" onClick="check(this);" />
<!-- Region 76 Archipelago_of_the_Recherche -->
<area shape="poly" alt="Archipelago_of_the_Recherche" coords="468,680,517,665,519,691,474,702" href="#Archipelago_of_the_Recherche" target="_self" onClick="check(this);" />
<!-- Region 77 Joseph_Bonaparte_Gulf -->
<area shape="poly" alt="Joseph_Bonaparte_Gulf" coords="559,128,598,128,591,158,572,158" href="#Joseph_Bonaparte_Gulf" target="_self" onClick="check(this);" />
<!-- Region 78 Cape_Arnhem -->
<area shape="poly" alt="Cape_Arnhem" coords="776,75,821,77,821,100,782,102" href="#Cape_Arnhem" target="_self" onClick="check(this);" />
<!-- Region 79 Collier_Range_National_Park -->
<area shape="poly" alt="Collier_Range_National_Park" coords="349,425,372,434,372,440,347,445" href="#Collier_Range_National_Park" target="_self" onClick="check(this);" />
<!-- Region 80 Karlamilyi_National_Park -->
<area shape="poly" alt="Karlamilyi_National_Park" coords="425,374,455,357,468,381,438,387" href="#Karlamilyi_National_Park" target="_self" onClick="check(this);" />
<!-- Region 81 Cape_Otway -->
<area shape="poly" alt="Cape_Otway" coords="910,812,937,804,937,821,916,823" href="#Cape_Otway" target="_self" onClick="check(this);" />
<!-- Region 82 Cape_Leeuwin -->
<area shape="poly" alt="Cape_Leeuwin" coords="298,702,323,702,323,721,296,721" href="#Cape_Leeuwin" target="_self" onClick="check(this);" />
<!-- Region 83 Lake_Amadeus -->
<area shape="poly" alt="Lake_Amadeus" coords="625,396,665,415,661,421,625,406" href="#Lake_Amadeus" target="_self" onClick="check(this);" />
<!-- Region 84 Kings_Canyon -->
<area shape="poly" alt="Kings_Canyon" coords="674,385,693,387,695,398,678,398" href="#Kings_Canyon" target="_self" onClick="check(this);" />
<!-- Region 85 Cobourg_Peninsula -->
<area shape="poly" alt="Cobourg_Peninsula" coords="657,49,682,56,680,71,661,68" href="#Cobourg_Peninsula" target="_self" onClick="check(this);" />
<!-- Region 86 Fitzroy_River -->
<area shape="poly" alt="Fitzroy_River" coords="466,236,513,247,521,262,487,260" href="#Fitzroy_River" target="_self" onClick="check(this);" />
<!-- Region 87 Ord_River -->
<area shape="poly" alt="Ord_River" coords="566,175,589,200,593,185,574,168" href="#Ord_River" target="_self" onClick="check(this);" />
<!-- Region 88 Gibb_River -->
<area shape="poly" alt="Gibb_River" coords="544,196,536,187,523,202,504,219,506,232,521,213,536,204" href="#Gibb_River" target="_self" onClick="check(this);" />
<!-- Region 89 Boodjamulla_National_Park -->
<area shape="poly" alt="Boodjamulla_National_Park" coords="831,245,846,247,848,268,835,270" href="#Boodjamulla_National_Park" target="_self" onClick="check(this);" />
<!-- Region 90 King_George_Sound -->
<area shape="poly" alt="King_George_Sound" coords="374,719,389,710,419,738,404,746" href="#King_George_Sound" target="_self" onClick="check(this);" />
<!-- Region 91 Cape_Grenville -->
<area shape="poly" alt="Cape_Grenville" coords="963,68,997,71,995,90,965,83" href="#Cape_Grenville" target="_self" onClick="check(this);" />
<!-- Region 92 Lord_Howe_Island -->
<area shape="poly" alt="Lord_Howe_Island" coords="1288,629,1292,634,1294,651,1284,646" href="#Lord_Howe_Island" target="_self" onClick="check(this);" />
<area shape="default" nohref alt="" />
</map>
<!-- END COPY -->
<h1 ontouchstart=" realclick=false; setTimeout(resetit,1000); " onclick=" realclick=false; setTimeout(resetit,1000); " style='padding: 5 5 5 5;position:absolute;top:-6px;left:20px;z-index:5;color:blue;background-color:#f0f0f0;'>Australian Geographical Quiz<font color=red> ... thanks to ...</font></h1>
<h3 ontouchstart=" realclick=false; setTimeout(resetit,1000); " onclick=" realclick=false; setTimeout(resetit,1000); " style='padding: 5 5 5 5;position:absolute;top:180px;left:20px;z-index:5;color:blue;background-color:#f0f0f0;'>RJM Programming</h3>
<h3 ontouchstart=" realclick=false; setTimeout(resetit,1000); " onclick=" realclick=false; setTimeout(resetit,1000); " style='padding: 5 5 5 5;position:absolute;top:210px;left:20px;z-index:5;color:blue;background-color:#f0f0f0;'>January, 2017</h3>
<h4 ontouchstart=" realclick=false; setTimeout(resetit,1000); " onclick=" realclick=false; setTimeout(resetit,1000); " id='score' style='padding: 5 5 5 5;position:absolute;top:180px;left:220px;z-index:5;color:blue;background-color:#f0f0f0;'>Score: 0/0</h4>
<select style='padding: 5 5 5 5;position:absolute;top:240px;left:220px;z-index:5;color:blue;background-color:#f0f0f0;' id='difficulty' ontouchstart=" realclick=false; setTimeout(resetit,1000); " onchange=" realclick=false; setTimeout(resetit,1000); document.getElementById('iag').src=this.value; factor=3; if (this.value.indexOf('difficult') == -1) { factor=1; } "><option value="http://www.rjmprogramming.com.au/HTMLCSS/agmap_difficult.jpg">Difficult</option><option value="http://www.rjmprogramming.com.au/HTMLCSS/agmap.jpg">Easier</option></select>
<select style='font-size:20px;padding: 5 5 5 5;position:absolute;top:270px;left:20px;z-index:5;color:blue;background-color:yellow;' id='whereis' ontouchstart=" realclick=false; setTimeout(resetit,1000); " onchange=" realclick=false; setTimeout(resetit,1000); if (this.value.length == 0) { placepick=-1; } else { placepick=strcoords.indexOf(this.value); placechosen=places[placepick].replace(/_/g,' '); } "><option value="">Where is? (happening soon)</option></select>
<div id=youtube ontouchstart=" realclick=false; setTimeout(resetit,1000); " onclick=" realclick=false; setTimeout(resetit,1000); "></div>
</body>
</html>