diff --git a/shop/item.php b/shop/item.php
index 1adbf2065..91304ff37 100644
--- a/shop/item.php
+++ b/shop/item.php
@@ -162,7 +162,7 @@ function pg_anchor($anc_id) {
?>
- >상품정보
- - >이용후기
+ - >사용후기
- >상품문의
- >배송정보
- >교환정보
@@ -559,7 +559,7 @@ else
- 이용후기
+ 사용후기
-사용후기 쓰기 새 창
-
-
\ No newline at end of file
+
+사용후기 쓰기 새 창
diff --git a/skin/board/itemuse/_common.php b/skin/board/itemuse/_common.php
new file mode 100644
index 000000000..15870801c
--- /dev/null
+++ b/skin/board/itemuse/_common.php
@@ -0,0 +1,4 @@
+
+$g4_path = "../../.."; // common.php 의 상대 경로
+include_once("$g4_path/common.php");
+?>
\ No newline at end of file
diff --git a/skin/board/itemuse/ajax.filter.php b/skin/board/itemuse/ajax.filter.php
new file mode 100644
index 000000000..11a71e34a
--- /dev/null
+++ b/skin/board/itemuse/ajax.filter.php
@@ -0,0 +1,72 @@
+
+include_once("./_common.php");
+
+if (!function_exists('convert_charset'))
+{
+ /*
+ -----------------------------------------------------------
+ Charset 을 변환하는 함수
+ -----------------------------------------------------------
+ iconv 함수가 있으면 iconv 로 변환하고
+ 없으면 mb_convert_encoding 함수를 사용한다.
+ 둘다 없으면 사용할 수 없다.
+ */
+ function convert_charset($from_charset, $to_charset, $str)
+ {
+
+ if( function_exists('iconv') )
+ return iconv($from_charset, $to_charset, $str);
+ elseif( function_exists('mb_convert_encoding') )
+ return mb_convert_encoding($str, $to_charset, $from_charset);
+ else
+ die("Not found 'iconv' or 'mbstring' library in server.");
+ }
+}
+
+header("Content-Type: text/html; charset=$g4[charset]");
+
+$subject = strtolower($_POST['subject']);
+$content = strtolower(strip_tags($_POST['content']));
+
+//euc-kr 일 경우 $config['cf_filter'] 를 utf-8로 변환한다.
+if (strtolower($g4[charset]) == 'euc-kr')
+{
+ //$subject = convert_charset('utf-8', 'cp949', $subject);
+ //$content = convert_charset('utf-8', 'cp949', $content);
+ $config['cf_filter'] = convert_charset('cp949', 'utf-8', $config['cf_filter']);
+}
+
+//$filter = explode(",", strtolower(trim($config['cf_filter'])));
+// strtolower 에 의한 한글 변형으로 아래 코드로 대체 (곱슬최씨님이 알려 주셨습니다.)
+$filter = explode(",", trim($config['cf_filter']));
+for ($i=0; $i
\ No newline at end of file
diff --git a/skin/board/itemuse/img/icon_file.gif b/skin/board/itemuse/img/icon_file.gif
new file mode 100644
index 000000000..cca47f566
Binary files /dev/null and b/skin/board/itemuse/img/icon_file.gif differ
diff --git a/skin/board/itemuse/img/icon_hot.gif b/skin/board/itemuse/img/icon_hot.gif
new file mode 100644
index 000000000..c95b839ae
Binary files /dev/null and b/skin/board/itemuse/img/icon_hot.gif differ
diff --git a/skin/board/itemuse/img/icon_img.gif b/skin/board/itemuse/img/icon_img.gif
new file mode 100644
index 000000000..fefa10d4a
Binary files /dev/null and b/skin/board/itemuse/img/icon_img.gif differ
diff --git a/skin/board/itemuse/img/icon_link.gif b/skin/board/itemuse/img/icon_link.gif
new file mode 100644
index 000000000..0f3cb1ac6
Binary files /dev/null and b/skin/board/itemuse/img/icon_link.gif differ
diff --git a/skin/board/itemuse/img/icon_mobile.gif b/skin/board/itemuse/img/icon_mobile.gif
new file mode 100644
index 000000000..ad934d23c
Binary files /dev/null and b/skin/board/itemuse/img/icon_mobile.gif differ
diff --git a/skin/board/itemuse/img/icon_movie.gif b/skin/board/itemuse/img/icon_movie.gif
new file mode 100644
index 000000000..cb958f83f
Binary files /dev/null and b/skin/board/itemuse/img/icon_movie.gif differ
diff --git a/skin/board/itemuse/img/icon_new.gif b/skin/board/itemuse/img/icon_new.gif
new file mode 100644
index 000000000..45aa6d7ed
Binary files /dev/null and b/skin/board/itemuse/img/icon_new.gif differ
diff --git a/skin/board/itemuse/img/icon_reply.gif b/skin/board/itemuse/img/icon_reply.gif
new file mode 100644
index 000000000..91c135977
Binary files /dev/null and b/skin/board/itemuse/img/icon_reply.gif differ
diff --git a/skin/board/itemuse/img/icon_secret.gif b/skin/board/itemuse/img/icon_secret.gif
new file mode 100644
index 000000000..c04899f14
Binary files /dev/null and b/skin/board/itemuse/img/icon_secret.gif differ
diff --git a/skin/board/itemuse/img/icon_sound.gif b/skin/board/itemuse/img/icon_sound.gif
new file mode 100644
index 000000000..c5188318a
Binary files /dev/null and b/skin/board/itemuse/img/icon_sound.gif differ
diff --git a/skin/board/itemuse/list.skin.php b/skin/board/itemuse/list.skin.php
new file mode 100644
index 000000000..1b38c1a88
--- /dev/null
+++ b/skin/board/itemuse/list.skin.php
@@ -0,0 +1,242 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Total 건
+ 페이지
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/skin/board/itemuse/style.css b/skin/board/itemuse/style.css
new file mode 100644
index 000000000..22cf7fb3f
--- /dev/null
+++ b/skin/board/itemuse/style.css
@@ -0,0 +1,139 @@
+/* 게시판 쓰기 */
+
+/* 게시판 목록 */
+#bo_list_title {margin-bottom:20px;font-size:1.2em;letter-spacing:-0.1em}
+
+#bo_cate h2 {position:absolute;;font-size:0;line-height:0;overflow:hidden}
+#bo_cate ul {margin-bottom:10px;padding-left:1px;width:728px;zoom:1}
+#bo_cate ul:after {display:block;visibility:hidden;clear:both;content:""}
+#bo_cate li {float:left;margin-bottom:-1px}
+#bo_cate a {display:block;position:relative;margin-left:-1px;padding:6px 0 5px;width:90px;border:1px solid #ddd;background:#f7f7f7;color:#888;text-align:center;letter-spacing:-0.1em;line-height:1.2em;cursor:pointer}
+#bo_cate a:focus, #bo_cate a:hover, #bo_cate a:active {text-decoration:none}
+#bo_cate #bo_cate_on {z-index:2;border:1px solid #565e60;background:#fff;color:#565e60;font-weight:bold}
+
+.td_subject img {margin-left:3px}
+
+/* 게시판 목록 공통 */
+.bo_fx {margin-bottom:5px;zoom:1}
+.bo_fx:after {display:block;visibility:hidden;clear:both;content:""}
+.bo_fx ul {margin:0;padding:0;list-style:none}
+#bo_list_total {float:left;padding-top:5px}
+.btn_bo_user {float:right;margin:0;padding:0;list-style:none}
+.btn_bo_user li {float:left;margin-left:5px}
+.btn_bo_adm {float:left}
+.btn_bo_adm li {float:left;margin-right:5px}
+.btn_bo_adm input {padding:0 10px;height:25px;border:1px solid #e8180c !important;background:#e8180c;color:#fff;text-decoration:none;vertical-align:middle;cursor:pointer}
+.bo_notice td {background:#f5f6fa}
+.bo_notice td a {font-weight:bold}
+.td_num strong {color:#000}
+.bo_cate_link {display:inline-block;margin:0 3px 0 0;padding:0 6px 0 0;border-right:1px solid #e7f1ed;color:#999 !important;font-weight:bold;text-decoration:none} /* 글제목줄 분류스타일 */
+.bo_current {color:#e8180c}
+.cnt_cmt {font-weight:bold}
+
+#bo_sch {margin-bottom:10px;padding-top:5px;text-align:center}
+#bo_sch legend {position:absolute;margin:0;padding:0;font-size:0;line-height:0;text-indent:-9999em;overflow:hidden}
+
+/* 게시판 읽기 */
+#bo_v {margin-bottom:20px;padding-bottom:20px}
+
+#bo_v_table {position:absolute;top:0;right:15px;margin:0;padding:0 5px;height:25px;background:#565e60;color:#fff;font-weight:bold;line-height:2.2em}
+
+#bo_v_title {padding:10px 0;font-size:1.2em}
+
+#bo_v_info {padding:0 0 10px;border-bottom:1px solid #ddd}
+#bo_v_info h2 {margin:0;padding:0;height:0;overflow:hidden}
+#bo_v_info strong {display:inline-block;margin:0 15px 0 5px;font-weight:normal}
+#bo_v_info .sv_member,
+#bo_v_info .sv_guest,
+#bo_v_info .member,
+#bo_v_info .guest {font-weight:bold}
+
+#bo_v_file {}
+#bo_v_file h2 {margin:0;padding:0;height:0;overflow:hidden}
+#bo_v_file ul {margin:0;padding:0;list-style:none}
+#bo_v_file li {padding:0 10px;border-bottom:1px solid #eee;background:#f5f6fa}
+#bo_v_file a {display:inline-block;padding:8px 0 7px;width:100%;color:#000;word-wrap:break-word}
+#bo_v_file a:focus, #bo_v_file a:hover, #bo_v_file a:active {text-decoration:none}
+#bo_v_file img {float:left;margin:0 10px 0 0}
+.bo_v_file_cnt {display:inline-block;margin:0 0 3px 22px}
+
+#bo_v_link {}
+#bo_v_link h2 {margin:0;padding:0;height:0;overflow:hidden}
+#bo_v_link ul {margin:0;padding:0;list-style:none}
+#bo_v_link li {padding:0 10px;border-bottom:1px solid #eee;background:#f5f6fa}
+#bo_v_link a {display:inline-block;padding:8px 0 7px;width:100%;color:#000;word-wrap:break-word}
+#bo_v_link a:focus, #bo_v_link a:hover, #bo_v_link a:active {text-decoration:none}
+.bo_v_link_cnt {display:inline-block;margin:0 0 3px 22px}
+
+#bo_v_top {margin:0 0 10px;padding:10px 0;zoom:1}
+#bo_v_top:after {display:block;visibility:hidden;clear:both;content:""}
+#bo_v_top h2 {margin:0;padding:0;height:0;overflow:hidden}
+#bo_v_top ul {margin:0;padding:0;list-style:none}
+
+#bo_v_bot {zoom:1}
+#bo_v_bot:after {display:block;visibility:hidden;clear:both;content:""}
+#bo_v_bot h2 {margin:0;padding:0;height:0;overflow:hidden}
+#bo_v_bot ul {margin:0;padding:0;list-style:none}
+
+.bo_v_nb {float:left}
+.bo_v_nb li {float:left;margin-right:5px}
+.bo_v_com {float:right}
+.bo_v_com li {float:left;margin-left:5px}
+
+#bo_v_atc {min-height:200px;height:auto !important;height:200px}
+#bo_v_atc_title {position:absolute;font-size:0;line-height:0;overflow:hidden}
+
+#bo_v_img {margin:0 0 10px;width:100%;overflow:hidden:zoom:1}
+#bo_v_img:after {display:block;visibility:hidden;clear:both;content:""}
+#bo_v_img img {margin-bottom:20px;max-width:100%;height:auto}
+
+#bo_v_con {margin-bottom:30px;width:100%;line-height:1.7em;word-break:break-all;overflow:hidden}
+#bo_v_con a {color:#000;text-decoration:underline}
+#bo_v_con img {max-width:100%;height:auto}
+
+#bo_v_act {margin-bottom:30px;text-align:center}
+#bo_v_act a {margin-right:5px;vertical-align:top}
+#bo_v_act span {display:inline-block;margin-right:5px;padding:0 10px;height:23px;border:1px solid #ccc !important;background:#fafafa !important;color:#000 !important;text-decoration:none !important;line-height:2.15em;vertical-align:top}
+#bo_v_act strong {color:#ff3061}
+#bo_v_act_good,
+#bo_v_act_nogood {position:absolute;font-size:0;line-height:0;overflow:hidden}
+
+#bo_v_sns {margin:0 0 20px;padding:0;list-style:none;zoom:1}
+#bo_v_sns:after {display:block;visibility:hidden;clear:both;content:""}
+#bo_v_sns li {float:left;margin:0 5px 0 0}
+
+#bo_v form {padding-top:20px}
+
+/* 게시판 댓글 */
+#bo_vc {padding:20px 20px 10px;border-top:1px solid #cfded8;border-bottom:1px solid #cfded8;background:#f5f6fa}
+#bo_vc h2 {margin-bottom:10px}
+#bo_vc article {padding:0 0 10px;border-top:1px dotted #ccc}
+#bo_vc header {position:relative;padding:15px 0 5px}
+#bo_vc header .icon_reply {position:absolute;top:15px;left:-20px}
+#bo_vc .sv_wrap {margin-right:15px}
+#bo_vc .member, #bo_vc .guest, #bo_vc .sv_member, #bo_vc .sv_guest {font-weight:bold}
+.bo_vc_hdinfo {display:inline-block;margin:0 15px 0 5px}
+#bo_vc h1 {position:absolute;font-size:0;line-height:0;overflow:hidden}
+#bo_vc a {color:#000;text-decoration:none}
+#bo_vc p {padding:0 0 5px;line-height:1.8em}
+#bo_vc p a {text-decoration:underline}
+#bo_vc_empty {margin:0;padding:20px !important;text-align:center}
+#bo_vc fieldset {margin:0 0 10px;padding:0}
+#bo_vc #bo_vc_winfo {float:left}
+#bo_vc footer {zoom:1}
+#bo_vc footer:after {display:block;visibility:hidden;clear:both;content:""}
+
+.bo_vc_act {float:right;margin:0;list-style:none;zoom:1}
+.bo_vc_act:after {display:block;visibility:hidden;clear:both;content:""}
+.bo_vc_act li {float:left;margin-left:5px}
+
+#bo_vc_w {position:relative;margin:0 0 10px;padding:0 0 20px;border-bottom:1px solid #cfded8}
+#bo_vc_w h2 {position:absolute;font-size:0;line-height:0;overflow:hidden}
+#bo_vc_w #char_cnt {display:block;margin:0 0 5px}
+
+#bo_vc_sns {margin:0;padding:0;list-style:none;zoom:1}
+#bo_vc_sns:after {display:block;visibility:hidden;clear:both;content:""}
+#bo_vc_sns li {float:left;margin:0 20px 0 0}
+#bo_vc_sns input {margin:0 0 0 5px}
+
+#bo_vc form {padding:0}
\ No newline at end of file
diff --git a/skin/board/itemuse/view.skin.php b/skin/board/itemuse/view.skin.php
new file mode 100644
index 000000000..f033e1315
--- /dev/null
+++ b/skin/board/itemuse/view.skin.php
@@ -0,0 +1,324 @@
+
+
+
+
+
+
+
+
+
+
+ 페이지 정보
+ 작성자
+ 작성일
+ 조회회
+ 댓글건
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 본문
+
+ \n";
+
+ for ($i=0; $i<=count($view['file']); $i++) {
+ if ($view['file'][$i]['view']) {
+ //echo $view['file'][$i]['view'];
+ echo get_view_thumbnail($view['file'][$i]['view']);
+ }
+ }
+
+ echo "\n";
+ }
+ ?>
+
+
+
+
+
+
+
+
+
+
+ 추천
+ 비추천
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/skin/board/itemuse/view_comment.skin.php b/skin/board/itemuse/view_comment.skin.php
new file mode 100644
index 000000000..6086927e5
--- /dev/null
+++ b/skin/board/itemuse/view_comment.skin.php
@@ -0,0 +1,301 @@
+
+
+
+
+
+
+ 댓글목록
+ \]/i", "", $comment);
+ ?>
+
+
+
+ 등록된 댓글이 없습니다.
+
+
+
+
+
+
+
+
diff --git a/skin/board/itemuse/write.skin.php b/skin/board/itemuse/write.skin.php
new file mode 100644
index 000000000..c2cefcd65
--- /dev/null
+++ b/skin/board/itemuse/write.skin.php
@@ -0,0 +1,214 @@
+
+
+
+
+
+
+
+
+