var isLocal = false;
function exit_url(url,width, height) {
  if(!isLocal) {
    str = "win" + Math.floor(Math.random() * 1000000);
    open(url, str, "width=" + width + ",height=" + height + ",scrollbars=yes,menubar=yes,location=yes");
  }


}
function exit_url_with_nav(url,width, height) {
  if(!isLocal) {
    str = "win" + Math.floor(Math.random() * 1000000);
    open(url, str, "width=" + width + ",height=" + height + ",menubar=yes,location=yes,scrollbars=yes,status=yes,toolbar=yes,resizable=yes");
  }


}

function pop_under(url,width,height) {
  str = "win" + Math.floor(Math.random() * 1000000);
  var win = open(url, str, "width=" + width + ",height=" + height + ",menubar=yes,location=yes,scrollbars=yes,status=yes,toolbar=yes,resizable=yes");
  self.focus();
  win.blur();
}

