
	var w = 800;
	var h = 600;

	function OpenRemote(RemoteFile,x,y) {

		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=" + x + ",scrollbars=yes,height=" + y );
		if (KentRemote.opener == null) KentRemote.opener = window;
		KentRemote.opener.name = "Kent";
		KentRemote.focus();

	}
