function np(code,type) {
	url = "meisai.html?BCode=" + code + "&Type=" + type;
	w=window.open(url, "meisai", "scrollbars=yes,resizable=yes,toolbar=yes,menubar=0,location=0,directories=0,status=0");
}

function search_submit() {
	document.choice.key.value = "list";
	document.choice.submit();
}

function clorder(cfrom, order) {
	document.choice.cfrom.value = cfrom;
	document.choice.order.value = order;
	document.choice.key.value = "list";
	document.choice.submit();
}

function blorder(order) {
	document.odr.order.value = order;
	document.odr.submit();
}

function togglesearch() {
	if (document.getElementById('search').style.display == "none") {
		document.getElementById('search').style.display = "block";
		document.choice.ishide.value = "block";
	} else {
		document.getElementById('search').style.display = "none";
		document.choice.ishide.value = "none";
	}
}

function togglechk(areaid) {
	var id = "chkb_" + areaid;
	if (document.getElementById(id).checked) {
		document.getElementById(id).checked = false;
	} else {
		document.getElementById(id).checked = true;
	}
}

function qfsubmit (keyparam) {
	document.qf.key.value = keyparam;
	document.qf.submit();
}

