/* javascript-sammlung fuer die Seiten http://pages.akbild.ac.at/anthropologie/ */

/* ============= :-))) ================ */

/* this sets font-size for whole document one fifth smaller (for Windoses) */

function set_FontSize() {
   if ((navigator.appVersion.indexOf("Win") != -1)) {
      if (document.all)
         document.body.style.setAttribute("fontSize","0.88em","false");
      else
         document.getElementsByTagName("body")[0].style.fontSize = "0.88em";
   }
   else {
      if (document.all)
         document.body.style.setAttribute("fontSize","1em","false")
      else
         document.getElementsByTagName("body")[0].style.fontSize = "1em";
   }
}

/* ============= :-))) ================ */

/* this prevents the page from being displayed within the frameset of a foreign site */


  if(top!=self)
   top.location=self.location;



/* ============= :-))) ================ */

/* Thank you for reading this stuff! */






