

  //#########################################################################
  //°³¹ßÀÏ : 
  //°³¹ßÀÚ : 
  //Á¦  ¸ñ : get Cookie   
  //»ç¿ë¹ý : 
  //        getCookie("name");
  //#########################################################################
  function getCookie(name) 
  {
      var dc = document.cookie;
      var prefix = name + "="
      var begin = dc.indexOf("; " + prefix);
    
      if (begin == -1) 
      {
          begin = dc.indexOf(prefix);
          if (begin != 0) return null;
      } 
      else 
      {
          begin += 2
      }
        
      var end = document.cookie.indexOf(";", begin);
      if (end == -1) end = dc.length;
    
      return unescape(dc.substring(begin + prefix.length, end));
  }
  

	//#########################################################################
	//°³¹ßÀÏ : 
	//°³¹ßÀÚ : 
	//Á¦  ¸ñ : ÆË¾÷À©µµ¿ì ¿­±â
	//»ç¿ë¹ý : 
	//      <INPUT TYPE="button" NAME="sub" VALUE="»õÃ¢¿­±â" OnClick="OpenPop('xxx.asp',200,100);">
	//#########################################################################    

	//½ºÅ©·Ñ¹Ù ÀÖ´Â°Í
	function OpenPop(pURL, pWidth, pHeight){
		var arg;
		arg = "width=" + pWidth + ",height=" + pHeight + ",toolbar=no,location=no,directorys=no,status=no,menubar=no,scrollbars=yes,resizable=no"
		window.open(pURL,"popup",arg)
	}

	//½ºÅ©·Ñ¹Ù ¾ø´Â°Í
	function OpenPop2(pURL, pWidth, pHeight){
		var arg;
		arg = "width=" + pWidth + ",height=" + pHeight + ",toolbar=no,location=no,directorys=no,status=no,menubar=no,scrollbars=no,resizable=no"
		window.open(pURL,"popup2",arg)
	}

	//½ºÅ©·Ñ¹Ù ¾ø´Â°Í 2
	function OpenPop4(pURL, pWidth, pHeight){
		var arg;
		arg = "width=" + pWidth + ",height=" + pHeight + ",toolbar=no,location=no,directorys=no,status=no,menubar=no,scrollbars=no,resizable=no"
		window.open(pURL,"popup4",arg)
	}

	function OpenPopX(pURL, pWidth, pHeight, pWinName){
		var arg;
		arg = "width=" + pWidth + ",height=" + pHeight + ",toolbar=no,location=no,directorys=no,status=no,menubar=no,scrollbars=no,resizable=no"
		window.open(pURL,pWinName,arg)
	}


	//Åø¹ÙµîÀÌ ÀÖ´Â°Í
	function OpenPop3(pURL, pWidth, pHeight){
		var arg;
		arg = "width=" + pWidth + ",height=" + pHeight + ",toolbar=yes,location=yes,directorys=no,status=yes,menubar=yes,scrollbars=yes,resizable=yes"
		window.open(pURL,"popup3",arg)
	}

