<!--

function WaihekeMapPopup(pPage) {
 var fullURL = document.location;
 var textURL = fullURL.toString();
 var URLlen = textURL.length;
 var lenMinusPage = textURL.lastIndexOf("/");
 lenMinusPage += 1;
 var fullPath = textURL.substring(0,lenMinusPage);
 popUpWin = window.open('','popWin','resizable=yes,scrollbars=no,width=620,height=400');
 figDoc= popUpWin.document;
 zhtm= '<HTML><HEAD><TITLE>' + '  Waiheke Unlimited Map - Close this window to return to website</TITLE>';
 zhtm += '</HEAD><CENTER>';
 zhtm += '<table COLS=1 WIDTH="100%" HEIGHT="100%"><td>';
 zhtm += '<CENTER>';
 zhtm += '<FONT COLOR="#ffffff">';
 zhtm += '<BODY bgcolor="#5588aa">';
 zhtm += '<IMG SRC="' + fullPath + pPage + '">';
 zhtm += '</FONT>';
 zhtm += '</CENTER>';
 zhtm += '</td></table></CENTER>';
 zhtm += '</BODY></HTML>';

 window.popUpWin.document.write(zhtm);
 window.popUpWin.document.close();
 window.popUpWin.focus();
 // Johnny Jackson 4/28/98
 }

//-->

