<!--
// 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";
    
  bulleton = new Image();
  bulleton.src = "../images/bullet_on.gif";

  bulletoff = new Image();
  bulletoff.src = "../images/bullet_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();
}
// -->
