document.writeln("<script language=\"JavaScript\" type=\"text\/JavaScript\">");
document.writeln("\/\/改变图片大小");
document.writeln("function resizepic(thispic)");
document.writeln("{");
document.writeln("if(thispic.width>500){");
document.writeln("  var a=thispic.width;");
document.writeln("  thispic.width=500;");
document.writeln("  thispic.height=Math.round(thispic.height*(500\/a));");
document.writeln("  }")
document.writeln("}")
document.writeln("\/\/无级缩放图片大小");
document.writeln("function bbimg(o)");
document.writeln("{");
document.writeln("  var zoom=parseInt(o.style.zoom, 10)||100;");
document.writeln("  zoom+=event.wheelDelta\/12;");
document.writeln("  if (zoom>0) o.style.zoom=zoom+\'%\';");
document.writeln("  return false;");
document.writeln("}");
document.writeln("\/\/双击鼠标滚动屏幕的代码");
document.writeln("var currentpos,timer;");
document.writeln("function initialize()");
document.writeln("{");
document.writeln("timer=setInterval (\"scrollwindow ()\",30);");
document.writeln("}");
document.writeln("function sc()");
document.writeln("{");
document.writeln("clearInterval(timer);");
document.writeln("}");
document.writeln("function scrollwindow()");
document.writeln("{");
document.writeln("currentpos=document.body.scrollTop;");
document.writeln("window.scroll(0,++currentpos);");
document.writeln("if (currentpos !=document.body.scrollTop)");
document.writeln("sc();");
document.writeln("}");
document.writeln("document.onmousedown=sc");
document.writeln("document.ondblclick=initialize");
document.writeln("");
document.writeln("\/\/更改字体大小");
document.writeln("var status0=\'\';");
document.writeln("var curfontsize=10;");
document.writeln("var curlineheight=18;");
document.writeln("function fontZoomA(){");
document.writeln("  if(curfontsize>8){");
document.writeln("    document.getElementById(\'fontzoom\').style.fontSize=(--curfontsize)+\'pt\';");
document.writeln("	document.getElementById(\'fontzoom\').style.lineHeight=(--curlineheight)+\'pt\';");
document.writeln("  }");
document.writeln("}");
document.writeln("function fontZoomB(){");
document.writeln("  if(curfontsize<64){");
document.writeln("    document.getElementById(\'fontzoom\').style.fontSize=(++curfontsize)+\'pt\';");
document.writeln("	document.getElementById(\'fontzoom\').style.lineHeight=(++curlineheight)+\'pt\';");
document.writeln("  }");
document.writeln("}");
document.writeln("\/\/发送文章给好友");
document.writeln("function copyToClipBoard(){");
document.writeln("	var clipBoardContent=\'\';");
document.writeln("	clipBoardContent+=\'强烈推荐：\'+document.all(\'DTitle\').innerText;");
document.writeln("	clipBoardContent+=\'\\r\\n\'+document.URL;");
document.writeln("	window.clipboardData.setData(\"Text\",clipBoardContent);");
document.writeln("	alert(\"复制成功，请粘贴到你的QQ\/MSN上推荐给你的好友\");");
document.writeln("}");
document.writeln("<\/script>")