//闪烁的表格边框
//function flashit(){if(!document.all)return;if (td123.style.borderColor=="black")td123.style.borderColor="#999999";else td123.style.borderColor="black"}setInterval("flashit()",500)
//渐入的效果,改变alpha值
function high(image){theobject=image,highlighting=setInterval("highlightit(theobject)",70)}function low(image){clearInterval(highlighting),image.filters.alpha.opacity=50}function highlightit(cur2){if (cur2.filters.alpha.opacity<100)cur2.filters.alpha.opacity+=10;else if(window.highlighting)clearInterval (highlighting)}
//拖动层的js
//var over=false,down=false,divleft,divtop;function move(){if(down){plane.style.left=event.clientX-divleft;plane.style.top=event.clientY-divtop;}}
//滑动层
//function bodyload()
//{
//if(plane.style.pixelTop!=0)
//{
//plane.style.pixelTop-=10
//setTimeout('bodyload()',1)
//}
//}
//渐变显示层
function Show(divid) {
divid.filters.revealTrans.apply();
divid.style.visibility = "visible";
divid.filters.revealTrans.play();
}
function Hide(divid) {
divid.filters.revealTrans.apply();
divid.style.visibility = "hidden";
divid.filters.revealTrans.play();
}
//渐变显示层
function Show1(divid) {
divid.filters.revealTrans.apply();
divid.style.display="block";
divid.filters.revealTrans.play();
}
function Hide1(divid) {
//divid.filters.revealTrans.apply();
divid.style.display="none";
//divid.filters.revealTrans.play();
}
function Hide2(divid) {
divid.filters.revealTrans.apply();
divid.style.display="none";
divid.filters.revealTrans.play();
}
function Show2(divid) {
divid.filters.revealTrans.apply();
    divid.style.display=(divid.style.display=="none")?"":"none";
divid.filters.revealTrans.play();
}

