/**********************************************************
 *
 * 機能　　　: 地図の表示
 *
 * 返り値　　: なし
 *
 * 引き数　　: 事業所(1:旧横浜本社、2:大阪、それ以外：新横浜本社)
 *
 * 機能説明　: 事業所の地図をポップアップで表示する
 *
 * 備考　　　: 
 *
 **********************************************************/
function clickImage(num) {
    if(num == 1) {// 横浜本社
	    var newWin = window.open("AccessMap.aspx?point=1", "", "height=750,width=518, menubar=yes, toolbar=yes, location=yes, status=yes, resizable=yes, scrollbars=yes");
    }
    else if(num == 2) {// 大阪事業所
	    var newWin = window.open("AccessMap.aspx?point=2", "", "height=750,width=518, menubar=yes, toolbar=yes, location=yes, status=yes, resizable=yes, scrollbars=yes");
    }else{
	    var newWin = window.open("AccessMap.aspx?point=3", "", "height=750,width=518, menubar=yes, toolbar=yes, location=yes, status=yes, resizable=yes, scrollbars=yes");
    }
}
