// JavaScript Document
function launch(newURL, newName, w, h) {
  var feature = 'height=' + h + ', width=' + w + ', scrollbars=0,location=0,menubar=0,status=0,resizeable=1';
  var remote = window.open(newURL, newName, feature);
  remote.window.focus();
}