// JavaScript Document

function pop(page){ //popup page
  cstring = "status=0,menubar=0,toolbar=0,scrollbars=1,width=430,height=475";
  if (document.layers) {
    x = window.screenX + 20;
    y = window.screenX + 20;
    cstring += ",screenX=" + x + ",screenY=" + y;
  }
  popper = window.open(page,"Locations",cstring);
  window.name = "opener";
}

