// JavaScript Document
// zoom  img
function  DrawImage(ImgD){  
     var  image=new  Image();  
     image.src=ImgD.src;  
     if(image.width>0  &&  image.height>0){  
       flag=true;  
       if(image.width/image.height>=  110/83){  
         if(image.width>110){      
         ImgD.width=110;  
         ImgD.height=(image.height*110)/image.width;  
         }else{  
         ImgD.width=image.width;      
         ImgD.height=image.height;  
         }  
         ImgD.alt=image.width+"*"+image.height;  
         }  
       else{  
         if(image.height>83){      
         ImgD.height=83;  
         ImgD.width=(image.width*83)/image.height;            
         }else{  
         ImgD.width=image.width;      
         ImgD.height=image.height;  
         }  
         ImgD.alt=image.width+"*"+image.height;  
         }  
       }  
}
function  DrawImage1(ImgD){  
     var  image=new  Image();  
     image.src=ImgD.src;  
     if(image.width>0  &&  image.height>0){  
       flag=true;  
       if(image.width/image.height>=  500/350){  
         if(image.width>500){      
         ImgD.width=500;  
         ImgD.height=(image.height*500)/image.width;  
         }else{  
         ImgD.width=image.width;      
         ImgD.height=image.height;  
         }  
         ImgD.alt=image.width+"*"+image.height;  
         }  
       else{  
         if(image.height>350){      
         ImgD.height=350;  
         ImgD.width=(image.width*350)/image.height;            
         }else{  
         ImgD.width=image.width;      
         ImgD.height=image.height;  
         }  
         ImgD.alt=image.width+"*"+image.height;  
         }  
       }  
}
