$(document).ready(function(){
		if(typeof(contentID)!="undefined") {
			$.ajax({
				type:"POST",
				url:"/api_service.asp?_a=getMemberContent",
				data:"contentId="+contentID,
				success:function(response){
					$("#bp_content").html(response);
					if(response=="<!--Permission Denied-->") {
						$.ajax({
							url:"/msg/Msg_LoginRequired_cn.asp",
							success:function(response) {
								$("#bp_content").html(response);
							}
						});
					}
					if(response=="<!--Permission Upgrade Required-->") {
						$.ajax({
							url:"/msg/Msg_AdvanceMemberRightRequired_cn.asp",
							success:function(response) {
								$("#bp_content").html(response);
							}
						});
					}
				}
			});
		}
	});