// JavaScript Document


function WebMailNewWindow(URLStr)
{
	var width = 850;
	var height = 520;
	var left = (screen.width/2) - width/2;
	var top = (screen.height/2) - (height/2)-30;

	popUpWindow(URLStr, left, top, width, height);
}
var popUpWin = 0;
function popUpWindow(URLStr, left, top, width, height)
{
  if(width>screen.width)
  {
  	width = screen.width;
  }

  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=yes,location=yes,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}


