﻿// JScript File
  <!--   
  var   flag=false;   
  function   DrawImage(ImgD,strwidth,strheight){   
  var   image=new   Image();   
  image.src=ImgD.src;   
  if(image.width>0   &&   image.height>0){   
  flag=true;   
  if(image.width/image.height>=   strwidth/strheight){   
  if(image.width>strwidth){     
  ImgD.width=strwidth;   
  ImgD.height=(image.height*strwidth)/image.width;   
  }else{   
  ImgD.width=image.width;     
  ImgD.height=image.height;   
  }   
  ImgD.alt=image.width+"×"+image.height;   
  }   
  else{   
  if(image.height>strheight){     
  ImgD.height=strheight;   
  ImgD.width=(image.width*strheight)/image.height;     
  }else{   
  ImgD.width=image.width;     
  ImgD.height=image.height;   
  }   
  ImgD.alt=image.width+"×"+image.height;   
  }   
  }   
  }     
  //-->   
