<!--
function popup(file,w,h){
  var left=(screen.Width-w)/2;
  var top=(screen.Height-h)/2;
  var popup=window.open(file, "_blank", "width="+w+",height="+h+",left="+left+",top="+top+",scrollbars=1");
  popup.focus();
}
//-->