
<!--
var flag=false;
function ZoomImage(ImgZ,MaxW,MaxH){
 var image=new Image();
 image.src=ImgZ.src;
 if(image.width>0 && image.height>0){
  flag=true;
  if(image.width/image.height>=MaxW/MaxH){
   if(image.width>MaxW){
    ImgZ.width=MaxW;
    ImgZ.height=(image.height*MaxW)/image.width;
   }else{
    ImgZ.width=image.width;
    ImgZ.height=image.height;
   }
  }
  else{
   if(image.height>MaxH){
    ImgZ.height=MaxH;
    ImgZ.width=(image.width*MaxH)/image.height;
   }else{
    ImgZ.width=image.width;
    ImgZ.height=image.height;
   }
  } 
 }
}
//*********** Í¼Æ¬µÈ±ÈËõ·Å£¬No Alt **** Jonhor *********************
-->
