var classImg = { prev_src : null, over_src : "/frame/img/over.gif", mouse_click : function() { alert("»ó¼¼ÆäÀÌÁö ¹«´Ü µµ¿ë¹æÁö¸¦ À§ÇØ\n\n¸¶¿ì½º ¿À¸¥ÂÊ ¹öưÀ» »ç¿ëÇϽǼö ¾ø½À´Ï´Ù.\n\n\n ¢Ñ ÇÃ") }, over : function(img, img_over) { this.prev_src = img.src; img.src = img_over; }, // end func out : function(img) { img.src = this.prev_src; }, // end func click : function(w, h, img_src) { var html = ""; html += ""; html += ""; html += ""; html += ""; html += "»ó¼¼º¸±â</" + "title>"; html += "<style type=\"text/css\">"; html += "body{ margin: 0;padding: 0; }"; html += "img{ margin: 0;padding: 0;border: 0; }"; html += "table{ border-collapse: collapse; }"; html += "table, tbody, tr, th, td{ margin: 0;padding: 0;border: 0; }"; html += "input.btn{ width: 55px;height: 20px;margin-top:20px;padding-top: 2px;border-left: 1px solid #DDD;border-top: 1px solid #DDD;border-right: 1px solid #555;border-bottom: 1px solid #555;background-color: #FFF; }"; html += "</" + "style>"; html += "</" + "head>"; html += "<body>"; html += "<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" bordercolor=\"#DDDDDD\">"; html += "<tr>"; html += "<th>"; html += "<img src=\"" + img_src + "\" />"; html += "</" + "th>"; html += "</" + "tr>"; html += "<tr>"; html += "<th>"; html += "<input type=\"button\" class=\"btn\" value=\"´Ý±â\" onclick=\"self.close()\" />"; html += "</" + "th>"; html += "</" + "tr>"; html += "</" + "table>"; html += "</" + "body>"; html += "</" + "html>"; var set = "width=" + w + ","; set += "height=" + h + ","; set += "scrollbars=yes,"; set += "resizable=yes,"; set += "status=no"; var win = window.open("", "image_window", set); win.document.open(); win.document.write(html); win.document.close(); if(parseInt(navigator.appVersion) >= 4){win.window.focus();} } // end func };