// クッキー設定
function setCookie(key, val) {
    var tmp;
    tmp = key + "=" + escape(val) + "; ";
    // tmp += "path=" + location.pathname + "; ";
    tmp += "path=/; ";
    tmp += "expires=Fri, 31-Dec-2030 23:59:59; ";
    //alert(tmp);
    document.cookie = tmp;
}
// ファイル名入力チェック
function inqkey1_check() {
    //alert('入力チェック！');
    var inqtxt = document.inqitem.inq.value;
    // 空チェック
    if (inqtxt.length < 1) {
        alert('検索条件未入力!!!');
        return false;
    }
    return true;
}
// 楽天検索保存
function savepara() {
    var msg;
    msg = "楽天検索をクッキーに保存します";
    if (confirm(msg)) {
        //alert(document.inqitem.rakuinq.value);
        setCookie("crakuinq", document.inqitem.rakuinq.value);
    }
}

