
var cur_on = "aa";
function show(onid) {
	if (cur_on == onid) {
		return;
	}
	$("#" + onid).attr("class", "onshow");
	$("#" + cur_on).attr("class", "unshow");
	$("#" + onid + "_c").css("display", "");
	$("#" + cur_on + "_c").css("display", "none");
	cur_on = onid;
}
function updatecode(imgid) {
	$("#" + imgid).attr("src", "/imgcode.do?" + Math.random());
}

function innerHtml(id, htmlstr) {
	$("#" + id).html(htmlstr);
}

function show(onid,mode) {
	if (cur_on == onid) {
		return;
	}
	$("#" + onid).attr("class", "onshow");
	$("#" + cur_on).attr("class", "unshow");
	$("#" + onid + "_c").css("display", "");
	$("#" + cur_on + "_c").css("display", "none");
	$("#moreauction").attr("href","../auction/morearticle.do?wait=false&mode="+mode);
	cur_on = onid;
}

