ih = 669;
iw = 710;
// -------------------------------------------------------
// newwin.js version 1.1 is copyright Felgall Pty Ltd,
// 12th March 2004, 7th July 2004
// use of this script without the permission
// of Felgall Pty Ltd is not permitted
// no changes are required in this module
// ------------------------------------------------------
function pw() {if (window.innerWidth != null) return window.innerWidth; if (document.body.clientWidth != null) return document.body.clientWidth; return (null);}
function ph() {if (window.innerHeight != null) return window.innerHeight; if (document.body.clientHeight != null) return document.body.clientHeight; return (null);}
function newWindow(pagename) {browserVersion = parseInt(navigator.appVersion);
if ((navigator.userAgent.indexOf('Opera 5') != -1) || (navigator.userAgent.indexOf('Opera 6') != -1)) {alert('The guestmap does not support Opera 6 or earlier.');
} else if ((navigator.appName.indexOf('Netscape') != -1) && (browserVersion <= 4)) {
alert('The guestmap does not support Netscape 4 or earlier.');
} else {hp = 0; height = ph(); ih += 25; if (height > ih) {hp = (height - ih) / 2;height = ih;} wp = 0; width = pw(); iw += 20; if (width > iw) {wp = (width - iw) / 2; width=iw;} var parm = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,height='
+ height + ',width=' + width; var myWin = window.open(pagename, 'mywin', parm); myWin.moveTo(wp,hp); myWin.focus();}}
