
var sosoCurrHighLight = document.getElementById("qdnr01");

function changePage(sc){
	if(sosoCurrHighLight == null){
		sosoCurrHighLight = document.getElementById("qdnr01");
	}
	sosoCurrHighLight.className = "qdnrfod2";
	sosoCurrHighLight = document.getElementById("qdnr" + sc)
	sosoCurrHighLight.className = "qdnrfod1";
}

function hideshowtags(upid,id) {
	//获取上传DIV对象
	var uploadobj = getbyid(upid).getElementsByTagName('div');
	for(var i=0; i< uploadobj.length; i++) {
		if(uploadobj[i].id.indexOf('qdnr') != -1) {
			uploadobj[i].style.display = "none";
		}
	}
	var showtagobj = getbyid(id);
	showtagobj.style.display = "block";
}

function getbyid(id) {
	if (document.getElementById) {
		return document.getElementById(id);
	} else if (document.all) {
		return document.all[id];
	} else if (document.layers) {
		return document.layers[id];
	} else {
		return null;
	}
}