function selectbulletin(seled) {
	if ("true" == seled) {
		$("input[@type=checkbox]").each(function(i){$(this).attr("checked", true)});
	} else {
		$("input[@type=checkbox]").each(function(i){ $(this).attr("checked", !$(this).attr("checked")) });
	}
	
}

function confirmdel() {
	var checked = false;
	$("input[@type=checkbox]").each(function(i){
		checked = checked || $(this).attr("checked");
	});
	if (checked) {
		return confirm("您确定要删除吗？");
	} else {
		alert("请选择要删除的所选的吗？");
		return false;
	}
}