// JavaScript Document

function open_remote(url, options) {
  remote = window.open(url, "_remote_control", options);
  if ( remote != null ) {
    if ( remote.opener == null ) {
      remote.opener = self;
    }
    remote.orig_url = self.location.href;
	if ( parseInt(navigator.appVersion) >= 3 ) {
	   remote.focus();
	} 
  }
}