//##################################
  function open_map(gotoURL,myname)
//##################################
{
//** change these 2 values
 height=550
 width=500
//** change 2 below for browser specific mods
 heightMod=0
 widthMod=0
//** change this if toolbar used  
 toolbarheight=0
  
 h=height+heightMod
 w=width+widthMod

 LeftPosition=(screen.width)?(screen.width - w)/2:100;
 TopPosition=(screen.height)?(screen.height - h - toolbarheight)/2:100;

//** change window settings
 settings='width='+ w + ',height='+ h + ',top=' + TopPosition + ',left=' + LeftPosition +   ',location=no,directories=no,menubar=no,toolbar=no,status=no,scrollbars=yes,resizable=yes,dependent=no';
 photowin=window.open(gotoURL,myname,settings);

if (navigator.appName=="Netscape"|| navigator.appName=="Microsoft Internet Explorer")
{return;} 
else
{photowin.location=gotoURL;photowin.focus();}
}

//end function 
//^^^^^^^
