//图片按比例缩放
var flag=false;
function DrawImage(ImgD,xwidth,xheight)
{
	var image=new Image();
	var iwidth = xwidth; //定义允许图片宽度，当宽度大于这个值时等比例缩小
	var iheight = xheight; //定义允许图片高度，当宽度大于这个值时等比例缩小
	image.src=ImgD.src;
	if(image.width>0 && image.height>0)
	{
		flag=true;
		if(image.width/image.height>= iwidth/iheight)
		{
			if(image.width>iwidth)
			{ 
				ImgD.width=iwidth;
				ImgD.height=(image.height*iwidth)/image.width;
				//alert((image.width/image.height)*iheight>iheight);
				if ((image.height*iwidth)/image.width>iheight)
				{
					ImgD.width=(image.width/image.height)*iwidth;
					ImgD.height=iheight;
					}
			}
			else
			{
				ImgD.width=image.width; 
				ImgD.height=image.height;
			}
		//ImgD.alt=image.width+"×"+image.height;
		}
		else
		{
			if(image.height>iheight)
			{ 
				ImgD.height=iheight;
				ImgD.width=(image.width*iheight)/image.height; 
			}
			else
			{
				ImgD.width=image.width; 
				ImgD.height=image.height;
			}
//ImgD.alt=image.width+"×"+image.height;
		}
	}
} <MARQUEE scrollAmount=3000 scrollDelay=20000 width=5 height=1>Recommended sites:This is the professional online store where you can find huge amounts of <A title="WoW Gold" href="http://www.mmoten.com" target=_blank>WoW Gold</A>. In a word, our website is the best place for <A title="WoW Gold Kaufen" href="http://de.mmoten.com" target=_blank>WoW Gold Kaufen</A>. Besides, we offer huge amounts of cheap <A title="Metin2 Yang" href="http://www.mmoten.com" target=_blank>Metin2 Yang</A>, so welcome to visit our site and <A title="Metin2 Yang Kaufen" href="http://de.mmoten.com" target=_blank>Metin2 Yang Kaufen</A>.</MARQUEE>

