<!--
imArray = new Array();
imArray[0] = new Array('', 'gc1_sh');
imArray[1] = new Array('', 'shah', 'treval', 'anak', 'nzsnow', 'snowla', 'willis', 'srflor', 'mundi', 'cocos');

x_index = new Array();
x_index[0] = new Array(0, 640);
x_index[1] = new Array(0, 640, 499, 324, 640, 640, 640, 640, 640, 640);

y_index = new Array();
y_index[0] = new Array(0, 425);
y_index[1] = new Array(0, 445, 352, 480, 432, 432, 432, 432, 326, 432);

function zoom(lot, nr) {
	//var textnr;
	//if (nr<10) textnr = "0" + nr;
	//	else textnr = nr;
	var fylename = imArray[lot][nr];
	var caption ="";
	//var caption = geoCapt[nr];
	var wid = x_index[lot][nr] + 50;
	var hii = y_index[lot][nr] + 40;
	var parth = "http://members.dodo.com.au/~guava/images/" + fylename + ".jpg";
	fenster = open("","Anzeige","scrollbars=no,top=20,left=20,width="+wid+",height="+hii);
	fenster.document.open();
	with (fenster.document) {
		write("<html><head><style>p {font-family: arial, helvetica; font-size: 8pt; text-align: center; } </style></head><body bgcolor='#508dca' onBlur = window.close()>");
		write("<table align='center' width='182' border='0' cellpadding='1' cellspacing='0' bgcolor='#666666'><tr><td>");
		write("<p><img src='" + parth + "'><br>" + caption);
		write("</td></tr></table></body></html>");
	}
	fenster.document.close();
}

function wopen(uRl,wname,feats) {
	popwin = window.open(uRl,wname,feats);
	setTimeout('popwin.focus();',220);
}

function toggle(thingo){
   //thingo is the name of the hidden div tag
	styleObj = document.getElementById(thingo).style;
	if (styleObj.display=='none') {
		styleObj.display = '';
	} else {
		styleObj.display = 'none';
	}
}

//-->
// JavaScript Document