//UDMv3.4
 
//relative positioning
function docjslib_getRealLeft(imgElem) { //http://www.webreference.com/js/column33/image.html
  xPos = eval(imgElem).offsetLeft;
  tempEl = eval(imgElem).offsetParent;
    while (tempEl != null) {
         xPos += tempEl.offsetLeft;
         tempEl = tempEl.offsetParent;
    }
  return xPos;
}
function docjslib_getRealTop(imgElem) {
  yPos = eval(imgElem).offsetTop;
  tempEl = eval(imgElem).offsetParent;
  while (tempEl != null) {
         yPos += tempEl.offsetTop;
         tempEl = tempEl.offsetParent;
    }
  return yPos;
}

var xPos,yPos,rImg;
var rPosition=new Array;
rImg=document.images['anchor'];
if(rImg) { 
 if((mac&&ie4)||konqi) { 
  ie4=false;ie=false;konqi=false;exclude=true;
  }
 else if(ns4){
  xPos=rImg.x
  yPos=rImg.y
  if(menuALIGN!="free"){menuALIGN="left";}
  absLEFT=xPos;
  absTOP=yPos; 
  }
 else{
  yPos=docjslib_getRealTop(rImg)
  xPos=docjslib_getRealLeft(rImg)
  if(menuALIGN!="free"){menuALIGN="left";}
  absLEFT=xPos;
  absTOP=yPos; 
  }
 }
 
var siSTR='';
if (ie4||(mac&&ie5)) { siSTR+='<script language="javascript1.2" type="text/javascript" src="/nipp_js/menu_ie4.js"></script>'; }
if (win&&ie5) { siSTR+='<script language="javascript1.2" type="text/javascript" src="/nipp_js/menu_ie5.js"></script>'; }
if (ns4) { siSTR+='<script language="javascript1.2" type="text/javascript" src="/nipp_js/menu_ns4.js"></script>'; }
if (ns6||mz7) { siSTR+='<script language="javascript1.2" type="text/javascript" src="/nipp_js/menu_moz.js"></script>'; }
if (op6) { siSTR+='<script language="javascript1.2" type="text/javascript" src="/nipp_js/menu_op6.js"></script>'; }
if (op5) { siSTR+='<script language="javascript1.2" type="text/javascript" src="/nipp_js/menu_op5.js"></script>'; }

if(!exclude) { document.write(siSTR); }