var putItThere = null;
var w = 0;
var h = 0;
function m(w,h,page) {
  if (window.screen) {
var width = screen.availWidth;
var height = screen.availHeight;
  info = window.open(''+page+'','info','width=' + w + ',height=' + h + ',left=' + ((width - w - 10) * .5) + ',top=' + ((height - h - 30) * .5) +',scrollbars=yes,resizeable=yes');
  }
}