<script language="javascript">
//function LoadImg(){
// var x = document.getElementById("content"); //得到一个层
//if(!x) return; //如果层不存在则返回
// var y = x.getElementsByTagName("img"); //x表示层,y表示层下的所有img元素
//for (var i=0;i<y.length;i++){
// if(y[i].width>0 && y[i].height>0){
// if(y[i].width > 530){
// y[i].height=(y[i].height*530)/y[i].width;
// }
// }
// }
//}
var proMaxHeight = 450;
var proMaxWidth = 500;
function proDownImage(ImgD){
var image=new Image();
image.src=ImgD.src;
if(image.width>0 && image.height>0){
var rate = (proMaxWidth/image.width < proMaxHeight/image.height)?proMaxWidth/image.width:proMaxHeight/image.height;
if(rate <= 1){
ImgD.width = image.width*rate;
ImgD.height =image.height*rate;
}else {
ImgD.width = image.width;
ImgD.height =image.height;
}
}
}
</script>