//刷新
function refur(){
	window.location.reload();
}

//我的类型
function findType(mytype){
	if(parseInt($("#pid").val())>0){
		if(checkISLogin()){
			window.location = "/bbs/topics/" + $("#pid").val() + "/me/" + mytype + "/";
		}
	}else{
		alert("请进入版区后再点击！");
	}
}

//验证用户是否登陆
function checkISLogin(){
	var reval = $.ajax({url:"/users/checkusername.jsp?check=1&d="+Math.random(),async:false}).responseText;
	if(reval.indexOf("nots")>-1){
		login_check_auto();
		return false;
	}else{
		return true;
	}
}

//登陆窗口
function loginSuess(){ 
	try{
		$("#TB_closeWindowButton").click();
		window.location.reload();
	}catch(e){}
	try{
		checkUser_login(); 
	}catch(e){}
}
