//Copyright (c) OMEN Labs 1999.  All Rights Reserved.
function show() {}
function skull() {}

function show1() {
document.logo.src= "img/sword6.gif";
} 
function skull1() {
browser_name = navigator.appName; 
if (browser_name == "Netscape") { 
  IH= window.innerHeight;
  IW= window.innerWidth;
  PX= window.pageXOffset;
  PY= window.pageYOffset;
  swtop= (IH+PY-(101+40));
  swleft=(IW+PX-(36+30));
  document.layers["sword"].top= swtop
  document.layers["sword"].left= swleft
  document.layers["shield"].top= swtop
  document.layers["shield"].left= swleft
}
else {
  IH= document.body.clientHeight;
  IW= document.body.clientWidth;
  PX= document.body.scrollLeft;
  PY= document.body.scrollTop;
  swtop= (IH+PY-(101+40));
  swleft=(IW+PX-(36+20));
 document.all('sword').style.top=swtop;
 document.all('sword').style.left=swleft;
 document.all('shield').style.top=swtop;
 document.all('shield').style.left=swleft;
}
setTimeout('skull()',5);
}