<!-- popWindow2.js -->
<!-- Shorewest Real Estate -->
<!-- Updated: 04/01/2004 -->

function popWindow2(theLink) {
  var initialX =  100;
  var initialY = 100;
  if (navigator.appName == "Netscape") {
    theWindow = open( theLink, "Lookup", "width=500,height=560," +
    "screenX=" + initialX + ",screenY=" + initialY +
    ",scrollbars,resizable");
    theLink.focus(); // make sure our new window is in front
  } else {
    theWindow = open( theLink, "Lookup", "width=500,height=560" +
    ",left=" + initialX + ",top=" + initialY +
    ",scrollbars,resizable");
  }
  theWindow.opener = self;
}