	function MM_openBrWindow(theURL,winName,features) { //v2.0
	  window.open(theURL,winName,features);
	}

	function na_open_window(name, url, left, top, width, height, toolbar, menubar, statusbar, scrollbar, resizable)
	{
	   toolbar_str = toolbar ? 'yes' : 'no';
	   menubar_str = menubar ? 'yes' : 'no';
	   statusbar_str = statusbar ? 'yes' : 'no';
	   scrollbar_str = scrollbar ? 'yes' : 'no';
	   resizable_str = resizable ? 'yes' : 'no';
	   window.open(url, name, 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
	}

	function setCookie( name, value, expiredays, domain ) {
		var todayDate = new Date();
		todayDate.setDate( todayDate.getDate() + expiredays );
		document.cookie = name+"="+escape( value )+"; path=/;expires="+todayDate.toGMTString()+"; domain="+domain+"; ";
	}

	function resize(resize_img) {
	  original = new Image();
	  original.src = (resize_img.src); 
	  fix_w = 80; // °íÁ¤ÇÒ Å©±â (ÇÈ¼¿ ´ÜÀ§)
	  if (resize_img.width > fix_w) resize_img.width = fix_w;
	  resize_img.onclick = function() {
		margin_Top    = 0;    // »ó¿©¹é
		margin_Left   = 0;    // ÁÂ¿©¹é
		margin_Right  = 0;    // ¿ì¿©¹é
		margin_Bottom = 0;    // ÇÏ¿©¹é
		winW = original.width + margin_Left + margin_Right; // »õ Ã¢ÀÇ °¡·Î Å©±â
		winH = original.height + margin_Top + margin_Bottom; // »õ Ã¢ÀÇ ¼¼·Î Å©±â

		ZoomImage = window.open('','','width='+winW+',height='+winH+',left=0,top=0');
		var htmlTag = "\
		  \n <html>\n <head>\n <title>È®´ë º¸±â</title>\n </head>\
		  \n <body onClick='window.close()' style='margin:0px; cursor:hand;' oncontextmenu='return false' onselectstart='return false' ondragstart='return false'>\
		  \n <table width='100%' height='100%' border='0' cellpadding='0' cellspacing='0'>\
		  \n <tr>\
		  \n <td align='center'>\
		  \n <img src='" + resize_img.src + "' onError=this.style.display='none'>\
		  \n </td>\
		  \n </tr>\
		  \n </table>\
		  \n </body>\
		  \n </html>\
		";
		ZoomImage.document.write(htmlTag);
	  }
	}

