/**
 * 横幅、縦幅を指定してウィンドウを開く
 */
function openWindow(url,width,height,title){
    window.open(url,'title',"width="+width+",height="+height+",scrollbars=no,location=no,menubar=no,toolbar=no,status=no");
    return false;
}

/**
 * 横幅、縦幅を指定してウィンドウを開く（スクロールバーあり）
 */
function openWindow2(url,width,height,title){
    window.open(url,'title',"width="+width+",height="+height+",scrollbars=yes,location=no,menubar=no,toolbar=no,status=no");
    return false;
}

/**
 * K002用
 */
function openHelpForaiMail(){
    window.open('/q/question/PQ50H010.html','aiメールご利用状況',"width=600,height=400,scrollbars=no,location=no,menubar=no,toolbar=no,status=no");
}
