// JavaScript Document
function _getDownload(ID){
	window.open("../Theme/DownFile.asp?id="+ID,"_Down","");
}

function _getWallpaper(Str){
	window.open("../Wallpaper/DownFile.asp?"+Str,"_Show","");
}

function AutoImage(obj,Max){
	var obj=$(obj)	
	var images=obj.getElementsByTagName("img")
	for(var i=0;i<images.length;i++){
			if(images[i].width>Max){
				images[i].width=Max;
				images[i].className="iMax";
				images[i].title="图片被缩小显示，点击查看原图";
				images[i].onclick=function(){window.open(this.src,"","")};
			}		
	}
}
