function DrawImage(objImg,MaxWidth,MaxHeight) 
{
	var img=objImg;
	var HeightWidth=img.height/img.width;//设置高宽比
	var WidthHeight=img.width/img.height;//设置宽高比
	if(img.readyState!="complete") 
	{
		//alert("not complete");
		//return false;//确保图片完全加载
	}
	if(img.width>=MaxWidth){
		img.width=MaxWidth;
		img.height=MaxWidth*HeightWidth;
		//alert("not complete1");
	}
	else if(img.height>=MaxHeight){
		img.height=MaxHeight;
		img.width=MaxHeight*WidthHeight;
		//alert("not complete2");
	}

}

function basket(ID)
{
		window.open('basket/basket.asp?product_id='+ID,'_blank','fullscreen=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=700,height=500,left=150,top=150,screenx=15,xcreeny=15');
}