/*                                              */
/*        汎用スクリプト郡                      */
/*                                              */
/*


/*----------------------------------------------------------------------/
/   指定の名前のクッキーを読込む                                        /
/----------------------------------------------------------------------*/
function GetCookie(KeyName){
    tmp = document.cookie + ';';
    idx1 = tmp.indexOf(KeyName, 0);
    if (idx1 != -1){
        tmp = tmp.substring(idx1, tmp.length);
        idx2 = tmp.indexOf("=", 0) + 1;
        idx3 = tmp.indexOf(";", idx2);
        return(unescape(tmp.substring(idx2, idx3)));
    }
    return("");
}


/*----------------------------------------------------------------------/
/   指定の名前のクッキーを削除する                                      /
/----------------------------------------------------------------------*/
function DeleteCookie(KeyName){
    tmp = KeyName + "=dummy;expires=Tue,1-Jan-2002 00:00:00;"
    document.cookie = tmp;
}


/*----------------------------------------------------------------------/
/   ウインドウをパラメータのサイズとみなして画面の中央に表示する        /
/----------------------------------------------------------------------*/
function MoveCenter(ww, wh) {
    w = (screen.availWidth - ww) / 2;
    h = (screen.availHeight - wh) / 2;
    moveTo(w,h);
}
