﻿// JScript 文件
var   flag=false;   
  function   DrawImage(Img1)
  {   
        var   image=new   Image();   
        image.src=Img1.src;
        if(image.width>image.height)
        {
          Img1.height=145;
          Img1.width=155;
        }
        else
        {
          if(image.width<image.height)
          {
            Img1.height=145;
            Img1.width=(image.width*145)/image.height;
          }
          else
          { Img1.width=145;
            Img1.height=145;
          }
        }
  }