﻿// JScript 文件

function setcookie() {
    var exdate = new Date(); // 宣告 exdate
    // 產生 cookie 內容
    document.cookie = "migo_index_s=" + exdate.getMonth()+ "." + exdate.getDate() + "." + exdate.getFullYear() + exdate.getHours() + "." + exdate.getMinutes() + "." + exdate.getSeconds()+ ";path=/";
}

