<!--
function HideEmail(sEmail,iShow) {
document.write('<a href="mailto:' + sEmail.replace('///','@') + '">');
if (iShow == 1) { document.write(sEmail.replace('///','@') + '</a>'); }
}

function getRealLeft(imgElem) {
        xPos = eval(imgElem).offsetLeft;
        tempEl = eval(imgElem).offsetParent;
          while (tempEl != null) {
                  xPos += tempEl.offsetLeft;
                  tempEl = tempEl.offsetParent;
          }
        return xPos;
}

function getRealTop(imgElem) {
        yPos = eval(imgElem).offsetTop;
        tempEl = eval(imgElem).offsetParent;
        while (tempEl != null) {
                  yPos += tempEl.offsetTop;
                  tempEl = tempEl.offsetParent;
          }
        return yPos;
}

function showarrow(elem) {

var start = getRealTop(menu);
start+=5;
var sitewidth = document.getElementById('menu').width; // Get Site width by top image
var coords = elem.coords.split(",");
width=coords[2]-coords[0];

;
TipLayer.style.pixelLeft = ((document.body.clientWidth/2)-(sitewidth/2)+(parseInt(coords[0]))+(width/2));
TipLayer.style.pixelTop = start;

TipLayer.style.visibility='visible';
}

function hidearrow() {
TipLayer.style.visibility='hidden';
}
-->