﻿$(function() {
   /*
    *  @ Paging
    *
    *  2010/07/20 hoshi
    */
    $(".popup").click(function(){
        window.open(this.href, "WindowName","width=800,height=600,resizable=yes,scrollbars=no");
        return false;
    });
    
    $(".popup2").click(function(){
        window.open(this.href, "WindowName","width=650,height=600,resizable=yes,scrollbars=yes");
        return false;
    });
    
    /* 施設求人情報 */
    $("a.popup3").click(function(){
        window.open(this.href, "Window01","width=1000,height=600,resizable=yes,scrollbars=yes,status=yes");
        return false;
    });
    
    /* 市区町村選択 */
    $(".popup4").click(function(){
        window.open(this.href, "WindowName","width=650,height=450,resizable=yes,scrollbars=yes");
        return false;
    });
    
    /* 施設求人情報 記入欄 */
    $("a.popup5").click(function(){
        window.open(this.href, "Window02","width=650,height=600,resizable=yes,scrollbars=yes");
        return false;
    });
    
    /* 会員登録の流れ */
    $(".popup6").click(function(){
        window.open(this.href, "WindowName","width=680,height=600,resizable=yes,scrollbars=yes");
        return false;
    });
    
    /* 会社概要地図 */
    $(".popup7").click(function(){
        window.open(this.href, "WindowName","width=900,height=600,resizable=yes,scrollbars=yes");
        return false;
    });
    
    /* 年号早見表 */
    $(".popup8").click(function(){
        window.open(this.href, "WindowName","width=900,height=600,resizable=no,scrollbars=no");
        return false;
    });
});
