SCRIPT language=JavaScript type=text/JavaScript
//改变图片大小
function resizepic(thispic)
...{
if(thispic.width700) thispic.width=700;
}
//无级缩放图片大小
function bbimg(o)
...{
var zoom=parseInt(o.style.zoom, 10)||100;
zoom+=event.wheelDelta/12;
if (zoom0) o.style.zoom=zoom+'%';
}
//双击鼠标滚动屏幕的代码
var currentpos,timer;
function initialize()
...{
timer=setInterval ("scrollwindow ()",30);
}
function sc()
...{
clearInterval(timer);
}