function moveWindowToMiddleOfScreen(ww,wh){//move to middle...
var sh = screen.height, sw = screen.width;
	mleft = sw - ww;
	mleft = mleft / 2;
mtop = sh - wh;
mtop = mtop / 2;
	window.moveTo(mleft,mtop);
}//End of function moveWindowToMiddleOfScreen()


function downloadWindow(fileLocation){
  ww = 500, wh = 200;
  var sh = screen.height, sw = screen.width;
	mleft = sw - ww;
	mleft = mleft / 2;
  mtop = sh - wh;
  mtop = mtop / 2;

  dldwin = window.open('/download.html?'+fileLocation,'','status=yes,width='+ww+',height='+wh+',location=no,menubar=no');
  
  dldwin.window.moveTo(mleft,mtop);
}//