
	var w = 650;
	var h = 390;
	var WinWidth = 650;
	var WinHeight = 390;

	function OpenRemote(RemoteFile) {

		if (window.screen) {
			w = screen.width;
			h = screen.height;
		}

		Left = (w - WinWidth) / 2;
		Top = 185;

		KentRemote = window.open(RemoteFile,"KentRemote","screenx=" + Left  + ",left=" + Left + ",screeny=" + Top + ",top=" + Top + ",width=" + WinWidth + ",scrollbars=yes,height=" + WinHeight );
		if (KentRemote.opener == null) KentRemote.opener = window;
		KentRemote.opener.name = "Kent";
		KentRemote.focus();

	}
