// 쪽지 창
var win_memo = function(path) {
	if(!path) path = '/comm/bbs/memo.php';
	window.open(path, 'winMemo', 'left=50,top=50,width=620,height=460,scrollbars=1');
}
// 포인트 창
var win_point = function() {
	window.open('/comm/bbs/point.php', 'winPoint', 'left=20, top=20, width=616, height=635, scrollbars=1');
}
// 프로필 창
var win_profile = function(mb_id) {
	window.open('/comm/bbs/profile.php?mb_id='+mb_id, 'winProfile', 'left=50, top=50, width=620, height=510, scrollbars=1');
};

var showHideNotice = function(p) {
	$(p).parent().find('p.content').slideToggle('slow');
};

var addImageBox = function(po_idx) {
	openWindow(root_path + '/imagebox.php?table='+table+'&add='+po_idx, 'egbImageBox', 50, 50, 500, 500, true);
};