
<!-- 
var flag=false; 
function DrawImage(ImgD){ 
var image=new Image(); 
image.src=ImgD.src; 
if(image.width>144 && image.width/image.height>= 1.05)
{
	ImgD.width=144; 
ImgD.height=(image.height*144)/image.width; 
	}
else if (image.width>144 && 0.95<= image.width/image.height && image.width/image.height<= 1.05)
{
	ImgD.width=144; 
ImgD.height=144; 

	}
else if (image.width>144 && image.width/image.height<0.95)
{
ImgD.height=144; 
ImgD.width=(image.width*144)/image.height; 
	
	}
else {
ImgD.width=image.width; 
ImgD.height=image.height; 	
	}


} 
//--> 