	var farwindow = null;
	function remoteWindow( linkpage ) {
	  farwindow =
	  window.open('','LinksRemote','width=500,height=300,scrollbars=1,resizable=1');
	  if (farwindow != null) {
	    if (farwindow.opener == null) {
	      farwindow.opener = self;
	    }
	    farwindow.location.href = linkpage;
	  }
	}