function popUpWindow(url, name, width, height, scrolling) {
  var properties = "width=" + width + ",height=" + height + ",scrollbars=" + scrolling;
  popUp = window.open(url, name, properties);
  popUp.focus();
}
