//错误提示
function showErrmsg(str){
	setErrmsg();
	var neelerErrmsg = $("#neelerErrmsg");
	neelerErrmsg.text(str).fadeIn("slow", function () {
		setTimeout(function(){
			neelerErrmsg.fadeOut("slow");
		}, 2000);
	});
}

function setErrmsg(){
	var neelerErrmsg = $("<div></div>")
		.attr("id", "neelerErrmsg")
		.css({
			"display": "none",
			"position": "fixed",
			"top": "150px",
			"left": "20%",
			"width": "60%",
			"height": "50px",
			"border": "1px solid #000",
			"border-radius": "10px",
			"line-height": "50px",
			"text-align": "center",
			"background": "rgba(0,0,0,.6)",
			"color": "#FFF",
			"z-index": "999999"
		});
	$("body").prepend(neelerErrmsg);
}