function openInNew(url) {
  var setting="";
  var p=75; // Percentage of window
  var f=10; // Fudge factor to account for the top
  
  if(window.screen) {
    if(window.screen.width) {setting +="width="+window.screen.width*p/100.0;}
    if(window.screen.height) {
      if(setting.length>0) {setting+=", ";}
      setting +="height="+window.screen.height*(p-f)/100.0;
    }
  }  
  if(setting.length>0) {
    setting+=", location=yes";
    setting+=", menubar=yes";
    setting+=", toolbar=yes";
    setting+=", resizable=yes";
    setting+=", scrollbars=yes";
  }  
  window.open(url,"",setting);
  return false;
}