function openInNewWindow (url) {
  var options = "toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,scrollbars=0,left=50,top=30";
  var width = 650;
  var height = 300;
  var w = window.open(url, 'AnotherWindowName', options + ',width=' + width + ',height=' + height);
  return false;
}
