function high(which2){
theobject=which2
highlighting=setInterval("highlightit(theobject)",60)
}
function low(which2){
clearInterval(highlighting)
which2.filters.alpha.opacity=100
}
function highlightit(cur2){
if (cur2.filters.alpha.opacity>60)
cur2.filters.alpha.opacity-=8    <!-- speed   -->
else if (window.highlighting)
clearInterval(highlighting)
}

pic1 = new Image();
pic1.src = '/pic/ceng.gif';
pic1a = new Image();
pic1a.src = '/pic/ceng1.gif';
function glow(x, y)
{
document.images[x].src=eval(y+'.src'); return true;
}

function show(document,w,h) {
 	window.open(document, "newWindow", "status=no,menubar=no,scrollbars=1,width="+w+",height="+h);
 }

function new_window1(url) {
link = window.open(url, "Link", "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, width=600, height=561, left=210, top=100"); link.focus();
}