//提交留言
function sub_gbook(user_id,request_id){
	var content = $("#comment").val();
	var len = $.trim(content).length;
	if( request_id == 'None'){
		$.alertMsg('您还未登录，暂无留言权限!');
		return false;
	}else{
		if(len == 0){
			$.alertMsg('您的留言不能为空！');
			return false;
		}else if(len > 200){
			$.alertMsg('您的留言不能超过200字！');
			return false;
		};
		var is_privacy = 1;
		if($('#chkmsg').attr('checked') == false){
			is_privacy = 0;
			
		}
		$.post('/homepage/'+user_id+'/gbook/',{'content':content,'is_privacy':is_privacy},function(data){
			if(data == 'ok'){
				$.alertMsg('留言成功',function(){
					$("#comment").val('');
					location.href = '/homepage/'+user_id+'/gbook/';
				});
			}else{
				$.alertMsg('服务器繁忙，请稍候再试！');
			}
		});
	}
}
	
