<SCRIPT language = JavaScript type = text/JavaScript>
// Change the image size
Function resizepic (thispic)
...{
If (thispic. width & gt; 700) thispic. width = 700;
}
// Stepless Scaling
Function bbimg (o)
...{
Var zoom = parseInt (o. style. zoom, 10) || 100;
Zoom + = event. wheelDelta/12;
If (zoom> 0) o. style. zoom = zoom + %;
}
// Double-click the code to scroll the screen
Var currentpos, timer;
Function initialize ()
...{
Timer = setInterval ("scrollwindow ()", 30 );
}
Function SC ()
...{
ClearInterval (timer );
}
Function scrollwindow ()
...{
Currentpos = document. body. scrollTop;
Window. scroll (0, ++ currentpos );
If (currentpos! = Document. body. scrollTop)
SC ();
}
Document. onmousedown = SC
Document. ondblclick = initialize
// Change the font size
Var status0 =;
Var curfontsize = 10;
Var curlineheight = 18;
Function fontZoomA ()...{
If (curfontsize> 8 )...{
Document. getElementById (fontzoom). style. fontSize = (-- curfontsize) + pt;
Document. getElementById (fontzoom). style. lineHeight = (-- curlineheight) + pt;
}
}
Function fontZoomB ()...{
If (curfontsize <64 )...{
Document. getElementById (fontzoom). style. fontSize = (++ curfontsize) + pt;
Document. getElementById (fontzoom). style. lineHeight = (++ curlineheight) + pt;
}
}
</SCRIPT>