<!-- script to make the pop ups center -->
<!-- Original:  Eric King (eric_andrew_king@hotmail.com) -->
<!--

//	Sample Call: <a href="gal-birdseyeview.htm" onclick="NewWindow(this.href,'name','625','450','yes');return false;">
//	<IMG SRC="images/gallery/tn_birdseyeview.jpg" WIDTH="125" HEIGHT="83" BORDER="0" ALT="Gull flying over"><\/a>
<!-- // Begin
function NewWindow(mypage, myname, w, h, scroll)
{
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',resizable,scrollbars'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
//  End >
//-->

