function newwinPrint(page, winWidth, winHeight)
{
  w = winWidth;
  h = winHeight;
  LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
  TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
  whatever = window.open(page, "Promagik", "width=" + w + " ,height=" + h + ",location=0,directories=0,menubar=1,toolbar=1,status=1,top=1,left=0,resizeable=1,scrollbars=yes");
  whatever.focus();
  whatever.moveTo(LeftPosition, TopPosition);
}