// JavaScript Document - acutal script of pop up image, DO NOT CHANGE unless the user knows of Java script
<!-- Hide Whole Code
<!-- Hide 
function killErrors() { 
return true; 
} 
window.onerror = killErrors; 
 // --> 
function hideLayer()
{
var layer = document.getElementById("popImageLayer");
layer.style.visibility='hidden';
}
function popImage(obj,img,href) 
{ 
var layer = document.getElementById("popImageLayer");

var t=obj.offsetTop;
var l=obj.offsetLeft+ obj.offsetWidth;
while(obj=obj.offsetParent){
t+=obj.offsetTop;
l+=obj.offsetLeft;
}

var content = "<A href="+href+" target=_self><IMG width=125 height=125 src='"+img+"'  style='border:0px;'>"

layer.innerHTML=content;
layer.style.left =l + 10;
layer.style.top = t - 105;

if(layer.style.top.replace("px","")<0){

layer.style.top=0;
}

if(layer.style.left.replace("px","")<0){

layer.style.left=0;
}

layer.style.visibility='visible';
} 
function high(which2){
theobject=which2;
highlighting=setInterval("highlightit(theobject)",40);
}
function low(which2){
clearInterval(highlighting);
which2.filters.alpha.opacity=40;
}
function highlightit(cur2){
if (cur2.filters.alpha.opacity<100)
cur2.filters.alpha.opacity+=5
else if (window.highlighting)
clearInterval(highlighting)
}
function delightit(cur2){
if (cur2.filters.alpha.opacity>5)
cur2.filters.alpha.opacity-=5;
else if (window.highlighting)
clearInterval(highlighting);
}
//-->