// JavaScript Document<script language="javascript">
// JavaScript Document<script language="javascript">
var flag=false; 
function DrawImage(ImgD,wid,hid){ 
	var image=new Image(); 
	image.src=ImgD.src; 
	if(image.width>0 && image.height>0){ 
		flag=true; 
		if(image.width/image.height>= wid/hid){ 
			if(image.width>wid){
				ImgD.width=wid; 
				ImgD.height=(image.height*wid)/image.width; 
			}else{ 
				ImgD.width=image.width;
				ImgD.height=image.height; 
			} 
		//ImgD.alt=image.width+"x"+image.height; 
		}else{ 
			if(image.height>hid){
				ImgD.height=hid; 
				ImgD.width=(image.width*hid)/image.height; 
			}else{ 
				ImgD.width=image.width;
				ImgD.height=image.height; 
			} 
		//ImgD.alt=image.width+"x"+image.height; 
		} 
	}
}
