﻿
function pic_width(obj,wid) {
var hh=obj.width;
	if(obj.width > wid) {
		obj.width=wid;
		hh=wid;
		  obj.style.cssText=("cursor:hand");
		  obj.alt='点击在新窗口中查看原始图片';
          obj.onclick=function(){window.open(this.src);};
	}
	
}
////限制图片撑开版面