<!--
function breviaryimage(Img,OrdainWidth,OrdainHeight){  
var image=new Image();  
image.src=Img.src;  
width=OrdainWidth; 
height=OrdainHeight; 
if(image.width>width||image.height>height){ 
w=image.width/width; 

h=image.height/height; 

if(w>h){ 
 Img.width=width; 
 Img.height=image.height*OrdainWidth/image.width; 

}else{ 
 Img.height=height; 
 Img.width=image.width*OrdainHeight/image.height; 
 } 
} 
} 

function showPhoto(imagepic) {
document.getElementById("Pro_bigimg").src=imagepic;
document.getElementById("imga").href=imagepic;
}

document.onselectstart=function(){return false;}

function click(e) {
if (document.all) {
if (event.button==1||event.button==2||event.button==3) {
oncontextmenu='return false';
}
}
if (document.layers) {
if (e.which == 3) {
oncontextmenu='return false';
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
document.oncontextmenu = new Function("return false;")

var travel=true
var hotkey=17 /* hotkey即为热键的键值,是ASII码,这里99代表c键 */
if (document.layers)
document.captureEvents(Event.KEYDOWN)
function gogo(e)
{ 
if (document.layers) {
	if (e.which==hotkey&&travel){
		} 
}else if (document.all){
	if (event.keyCode==hotkey&&travel){}}
}
document.onkeydown=gogo 

//-->
