function fullsize_window() {
  self.moveTo(0,0);
  if(screen.availWidth) {
    self.resizeTo(screen.availWidth,screen.availHeight);
  } else if(screen.width) {
    self.resizeTo(screen.width,screen.height);
  }

}

function size_window(w, h, m, x, y) {
  if(m) {
    self.moveTo(x,y);
  }
  self.resizeTo(w,h);
}

function printpage() {
  window.print();  
}


if(document.images) {

es_flash_off = new Image;
es_flash_on = new Image;
es_alt_off = new Image;
es_alt_on = new Image;

es_nav_book_on = new Image;
es_nav_book_off = new Image;
es_nav_extract_on = new Image;
es_nav_extract_off = new Image;
es_nav_oxford_on = new Image;
es_nav_oxford_off = new Image;
es_nav_author_on = new Image;
es_nav_author_off = new Image;
es_nav_blog_on = new Image;
es_nav_blog_off = new Image;
es_nav_extras_on = new Image;
es_nav_extras_off = new Image;
es_nav_multimedia_on = new Image;
es_nav_multimedia_off = new Image;

es_flash_off.src = "../img/es_flash_off.gif";
es_flash_on.src = "../img/es_flash_on.gif";
es_alt_off.src = "../img/es_alt_off.gif";
es_alt_on.src = "../img/es_alt_on.gif";

es_nav_book_on.src = "../img/es_nav_book_on.gif";
es_nav_book_off.src = "../img/es_nav_book_off.gif";
es_nav_extract_on.src = "../img/es_nav_extract_on.gif";
es_nav_extract_off.src = "../img/es_nav_extract_off.gif";
es_nav_author_on.src = "../img/es_nav_author_on.gif";
es_nav_author_off.src = "../img/es_nav_author_off.gif";
es_nav_blog_on.src = "../img/es_nav_blog_on.gif";
es_nav_blog_off.src = "../img/es_nav_blog_off.gif";
es_nav_oxford_on.src = "../img/es_nav_oxford_on.gif";
es_nav_oxford_off.src = "../img/es_nav_oxford_off.gif";
es_nav_extras_on.src = "../img/es_nav_extras_on.gif";
es_nav_extras_off.src = "../img/es_nav_extras_off.gif";
es_nav_multimedia_on.src = "../img/es_nav_multimedia_on.gif";
es_nav_multimedia_off.src = "../img/es_nav_multimedia_off.gif";

}

function swapImage(f,n) {
  f = "document."+f;
  f = eval(f);
  n = eval(n);
  f.src = n.src;
}