<!-- //

function high(which2){
theobject=which2
highlighting=setInterval("highlightit(theobject)",50)
}
function low(which2){
clearInterval(highlighting)
which2.filters.alpha.opacity=40
}
function highlightit(cur2){
if (cur2.filters.alpha.opacity<100)
cur2.filters.alpha.opacity+=8
else if (window.highlighting)
clearInterval(highlighting)
}

function windowopen (url, w, h)
{
nn4 = (document.layers)? true : false;
ie4 = (document.all)? true : false;
posX = Math.round((screen.width - w) / 2);
posY = Math.round((screen.height - h) / 2);
//widthGif+=20;
//heightGif+=20;
poscode = (nn4)? "screenX="+posX+",screenY="+posY : "left="+posX+",top="+posY;
window.open(url, "photoWindow", "status=yes,width="+w+",height="+h+","+poscode);
}

function windowopen_scroll (url, w, h)
{
nn4 = (document.layers)? true : false;
ie4 = (document.all)? true : false;
posX = Math.round((screen.width - w) / 2);
posY = Math.round((screen.height - h) / 2);
//widthGif+=20;
//heightGif+=20;
poscode = (nn4)? "screenX="+posX+",screenY="+posY : "left="+posX+",top="+posY;
window.open(url, "photoWindow", "status=yes,scrollbars=yes,width="+w+",height="+h+","+poscode);
}


// -->