<!--
* 자바스크립트 또는 메타태그로 이동시
  - GET 데이타 전송 : document.location.search
  - REFERRER 전송 : document.referrer
  
주의>
  - 특정페이지로 끝나는 경우 : /index.html          "?" 를 추가 document.location.href = "/index.html?<%=$params%>";
  - 연동파라메타가 있는 경우 : /index.html?mode=1   "&" 를 추가 document.location.href = "/index.html?mode=1&<%=$params%>";
-->

<script type="text/javascript">
    var params = "";
    if(document.location.search){params = document.location.search.replace(/^\?/,'');}
    if(document.referrer){
        if(params){params += "&";}
        params += "CPC_REFERER=" + escape(document.referrer);
    }
    if(params){
	    document.location.href =  "/index.html?" + params;
    }else{
	    document.location.href =  "/index.html"
    }
</script>