function blog_register( url, blogidx ) { var target = url+"&blogidx=" + blogidx; window.open(target, "blog_register", "width=510, height=280, top=300, left=300"); } function blog_modify( url, blogidx ) { var target = url+"&blogidx=" + blogidx; window.open(target, "blog_modify", "width=510, height=320, top=300, left=300"); } function blog_delete( url, blogidx ) { var target = url+"&blogidx=" + blogidx; window.open(target, "blog_delete", "width=510, height=190, top=300, left=300"); } function redirect(url) { opener.location.href=url; window.close(); } function postgood(blogidx,postidx,good) { if (!g4_is_member){ alert("추천을 하려면 로그인 하셔야 합니다."); return; } var width = 200; var height =100; var _left = (screen.width - width) / 2; var _top = (screen.height - height) / 2; if(good=='good'){ if(confirm('추천 하시겠습니까? \r\n')){ window.open(g4_path + '/local/postgood.php?blogidx=' + blogidx + '&postidx=' + postidx + '&good=' + good,'good','width=' + width + 'px,height=' + height + 'px,left=' + _left + 'px,top=' + _top + 'px,scrollbars=no,toolbars=no'); } } }