
var url = ""
function openWindow(url) {
  popupWin = window.open(url, 'tour', 'status=yes,width=670,height=420,resizable,scrollbars')
  statdelay=setTimeout("setwinStatus()", 500)    //Need a little delay for browser
}
function setwinStatus() {
  if (popupWin != null) {
    popupWin.status = 'Mortgage Reduction Associates';
    clearTimeout(statdelay)
  }
}
