﻿
function imge() {
    var allimg = document.getElementById("content").getElementsByTagName("img");
    for (i = 0; i < allimg.length; i++) {
        if (allimg[i].width > 620) {
            var xx = allimg[i].width;
            var yy = allimg[i].height;
            allimg[i].height = yy * (620 / xx);
            allimg[i].width = 620;
        }
    }

}

function bt(obj) {

    obj.className = "bts";

}
function bts(obj) {
    obj.className = "";

}


<!--
function key(){ 
if(event.shiftKey){
alert('本站禁止Shift');}
//禁止Shift
if(event.altKey){
alert('本站禁止Alt');}
//禁止Alt
if(event.ctrlKey){
alert('本站禁止Ctrl');}
//禁止Ctrl
return false;}
//document.onkeydown=key;
//if (window.Event)
//document.captureEvents(Event.MOUSEUP);
//function nocontextmenu(){
//event.cancelBubble = true
//event.returnValue = false;
//return false;}s
//function norightclick(e){
//if (window.Event){
//if (e.which == 2 || e.which == 3)
//return false;}
//else
//if (event.button == 2 || event.button == 3){
//event.cancelBubble = true
//event.returnValue = false;
//return false;}
//}
//禁右键
//document.oncontextmenu = nocontextmenu;   // for IE5+
//document.onmousedown = norightclick;   // for all others
//-->

