위 내용 넣는곳 ..
-----------------------------------------------------------------------------
수정 파일 : js/common.js
/**
* 포인트 창
**/
var win_point = function(href) {
var new_win = window.open(href, 'win_point', 'left=100,top=100,width=600, height=600, scrollbars=1');
new_win.focus();
}
위 내용을 찾은 후 바로 아래에 이렇게 추가
/**네이버 톡톡 새창**/
var n_talk= function(href) {
var new_win = window.open(href, 'n_talk', 'left=100,top=100,width=600,height=700,scrollbars=1');
new_win.focus();
}
-----------------------------------------------------------------------------
추가
-----------------------------------------------------------------------------
같은 파일에서 좀 더 아랫부분에 있는
$(".win_point").click(function() {
win_point(this.href);
return false;
});
여기 바로에 이렇게 추가
추가
$(".n_talk").click(function() {
n_talk(this.href);
return false;
});