var post = {
	post_show: function(m){
		var screenH = $(document).height();
        $('body').append('<div id="send_msg_show" onclick="post.post_close();" style="display:none;position:absolute;top:0;left:0;border: 1px solid ; background:#000;width: 100%; height: ' + screenH + 'px; z-index: 3;filter:alpha(opacity=50);-moz-opacity:0.5;opacity: 0.5;"></div>' + '<div id="mem_detailbox" class="mem_detailbox" ></div>');
        $('#send_msg_show').fadeIn('500');
        var liginPos = {
            'z-index': '50',
            'top': 50 + $('html').scrollTop() + 'px',
            'position': 'absolute',
            'left': ($(window).width()-730) / 2 + 'px'
        };
        var mode=('&mode='+(m==2?'zx':'n'));
        $('#mem_detailbox').css(liginPos).html('<iframe id="sent_msg" name="sent_msg" width="730" height="650" style="background:#fff;border:0;margin:-35px;0 0 -35px;" scrolling=no src="index.php?op=newPost'+mode+'"></iframe>');
 	},
 	post_close:function(){
 		$('#send_msg_show,#mem_detailbox').fadeOut('500',function(){ $(this).remove();});
 	},
 	member_clause:function(){
		var screenH = $(document).height();
        $('body').append('<div id="member_clause" onclick="post.member_clause_close();" style="display:none;position:absolute;top:0;left:0;border: 1px solid ; background:#000;width: 100%; height: ' + screenH + 'px; z-index: 3;filter:alpha(opacity=50);-moz-opacity:0.5;opacity: 0.5;"></div>' + '<div id="member_clause_detail" class="mem_detailbox" ></div>');
        $('#member_clause').fadeIn('500');
        var liginPos = {
            'z-index': '50',
            'top': 50 + $('html').scrollTop() + 'px',
            'position': 'absolute',
            'left': ($(window).width()-730) / 2 + 'px'
        };
        $('#member_clause_detail').css(liginPos).html('<iframe id="sent_msg" name="sent_msg" width="730" height="650" style="background:#fff;border:0;margin:-35px;0 0 -35px;" scrolling=no src="clause.php"></iframe>');
 	},
 	member_clause_close:function(){
 		$('#member_clause,#member_clause_detail').fadeOut('500',function(){ $(this).remove();});
 	}
}
        
