<!--
// back and next buttons highlight
// bullet highlight

if (document.images) {
  backbuttonon = new Image();
  backbuttonon.src = "../../images/back_button_on.gif";

  backbuttonoff = new Image();
  backbuttonoff.src = "../../images/back_button_off.gif";
  
  nextbuttonon = new Image();
  nextbuttonon.src = "../../images/next_button_on.gif";

  nextbuttonoff = new Image();
  nextbuttonoff.src = "../../images/next_button_off.gif";
  
  orbuttondown = new Image();
  orbuttondown.src = "../../ru_area/orientation/images/prog_or_down.gif";

  orbuttonup = new Image();
  orbuttonup.src = "../../ru_area/orientation/images/prog_or_up.gif";  
  
  orbackbuttondown = new Image();
  orbackbuttondown.src = "../../ru_area/orientation/images/or_back_down.gif";

  orbackbuttonup = new Image();
  orbackbuttonup.src = "../../ru_area/orientation/images/or_back_up.gif";
  
  ornextbuttondown = new Image();
  ornextbuttondown.src = "../../ru_area/orientation/images/or_next_down.gif";

  ornextbuttonup = new Image();
  ornextbuttonup.src = "../../ru_area/orientation/images/or_next_up.gif";

  bulleton = new Image();
  bulleton.src = "../../images/bullet_on.gif";

  bulletoff = new Image();
  bulletoff.src = "../../images/bullet_off.gif";
  
  image_a = new Image();
  image_a.src = "../../ru_area/mod06/images/060106_a.jpg";

  image_b = new Image();
  image_b.src = "../../ru_area/mod06/images/060106_b.jpg";
  
  pers_on = new Image();
  pers_on.src = "../../ru_area/mod03/images/030201_pers_on.gif";

  pers_off = new Image();
  pers_off.src = "../../ru_area/mod03/images/030201_pers_off.gif";

  cog_on = new Image();
  cog_on.src = "../../ru_area/mod03/images/030201_cog_on.gif";

  cog_off = new Image();
  cog_off.src = "../../ru_area/mod03/images/030201_cog_off.gif";
 
  attn_on = new Image();
  attn_on.src = "../../ru_area/mod03/images/030201_attn_on.gif";

  attn_off = new Image();
  attn_off.src = "../../ru_area/mod03/images/030201_attn_off.gif";
  
  multi_on = new Image();
  multi_on.src = "../../ru_area/mod03/images/030201_multi_on.gif";

  multi_off = new Image();
  multi_off.src = "../../ru_area/mod03/images/030201_multi_off.gif";
  
  info_on = new Image();
  info_on.src = "../../ru_area/mod03/images/030201_info_on.gif";

  info_off = new Image();
  info_off.src = "../../ru_area/mod03/images/030201_info_off.gif";
}

function changeImages() {
  if (document.images) {
    for (var i=0; i<changeImages.arguments.length; i+=2) {
      document[changeImages.arguments[i]].src = eval(changeImages.arguments[i+1] + ".src");
    }
  }
}

// -->

<!--
// new window popup

function popUp(theURL,width,height) {
var window_width = width;
var window_height = height;
var newfeatures='toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1';
var window_top = (screen.height-window_height)/2;
var window_left = (screen.width-window_width)/2;
newWindow=window.open
(''+ theURL + '','win','width=' + window_width + ',height=' + window_height + ',top=' + window_top + ',left=' + window_left + ',features=' + newfeatures + '');
//self.name = "mainWin";
newWindow.creator="self";
newWindow.focus();
}
//-->

<!--
// new window help popup

function popUphelp(theURL,width,height) {
var window_width = width;
var window_height = height;
var newfeatures='toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1';
var window_top = (screen.height-window_height)/2;
var window_left = (screen.width-window_width)/2;
newWindow=window.open
(''+ theURL + '','win','width=' + window_width + ',height=' + window_height + ',top=' + window_top + ',left=' + window_left + ',features=' + newfeatures + '');
self.name = "helpWin";
newWindow.creator="self";
newWindow.focus();
}
//-->

<!--  Hide
// another new window popup

function popUp2(url) {             
newWindow=window.open(''+ url,'win','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=380,height=420');
//self.name = "mainWin"; 
newWindow.creator="self";
newWindow.focus();
}
// -->
