// JPS (JavaScript Positioning System) (IE5+) (S:02)

/* RESERVED WORDS: jps */

document.write("<style type='text\/css'> .aNcH { position: absolute; display: block } <\/style>");

jps = new Object();

function f02_01(objRef, anchRef) {
  objRef.v02_aX = anchRef;
  objRef._x = new Function("return this.v02_aX.offsetLeft")
}

jps.regXMethod = f02_01;

function f02_02(objRef, anchRef) {
  objRef.v02_aY = anchRef;
  objRef._y = new Function("return this.v02_aY.offsetTop")
}

jps.regYMethod = f02_02;

function f02_03(objRef, anchLRef, anchRRef) {
  objRef.v02_aXl = anchLRef;
  objRef.v02_aXr = anchRRef;
  objRef._width = new Function("return this.v02_aXr.offsetLeft - this.v02_aXl.offsetLeft")
}

jps.regWMethod = f02_03;

function f02_04(objRef, anchTRef, anchBRef) {
  objRef.v02_aYt = anchTRef;
  objRef.v02_aYb = anchBRef;
  objRef._height = new Function("return this.v02_aYb.offsetTop - this.v02_aYt.offsetTop")
}

jps.regHMethod = f02_04;

function f02_05(anchName) {
  var i = 0;
  while (i < document.anchors.length && document.anchors[i].name != anchName)
    ++i;
  if (i < document.anchors.length) return document.anchors[i]
}

jps.getAnchRef = f02_05