function ts_pic(obj,wd,ht) {
	wr = obj.width/wd;
	hr = obj.height/ht;
	if(wr>1 && wr>=hr) obj.width=wd;
	if(hr>1 && hr>wr) obj.height=ht;
}
