function MyPopUpWin(thePath) {
	var iMyWidth;
	var iMyHeight;
	//half the screen width minus half the new window width (plus 5 pixel borders).
	iMyWidth = (window.screen.width)?(window.screen.width/2) - (275 + 10):500;
	//half the screen height minus half the new window height (plus title and status bars).
	iMyHeight = (window.screen.width)?(window.screen.height/2) - (125 + 50):500;
	//Open the window.
	var win2 = window.open(thePath,"Bookkeeping Services","status=no,height=250,width=550,resizable=no,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",toolbar=no,menubar=no,scrollbars=no,location=no,directories=no");
	return false;
}
