/* キー発行 */
var Today = new Date();
var KeyDate = Today.getYear() + "_" + (Today.getMonth() + 1) + "_" + Today.getDate();

/* ウインドウを開く */
function WinOpenI(TargetUrl){
    var win = window.open(TargetUrl + '&OpenMode=' + KeyDate, 'WinPestIndex');
    win.focus();
}
function WinOpen(TargetUrl){
    var win = window.open(TargetUrl + '&OpenMode=' + KeyDate, 'WinPestList');
    win.focus();
}

