// JavaScript Document
//限制团片显示最大宽度的函数
function ImageWidthMAX(TheWidth) {
	var imgList = document.images; 
	for(var i=0; i<imgList.length; i++) {
		if (imgList[i].width>TheWidth) {
			imgList[i].width = TheWidth;
		}
	} 
}