if (document.all) {
  document.getElementById = function (name) {
    return document.all(name);
  }
}


function newWindow(url, name, w, h) {
  var width = w;
  var height = h;
  newWin = window.open(url, name,"location=no,directories=no,menubar=no,statusbar=no,toolbar=no,scrollbars=yes,height=" +height+ ",width=" +width+ ",resizable=yes");
  newWin.resizeTo(width,height);
  newWin.focus();
  return false;
}

function jobsWindow(apID) {
  return newWindow('popup.jsp?articleID='+apID, 'jobswin', 670, 550);
}

function sWindow(apID, title) {
  return newWindow('popup.jsp?task=services&articleID='+apID, 'jobswin', 670, 550);
}