url = new Array();
target = new Array();
moji = new Array();

/* リンク先とターゲット（同じウィンドウ：0、別窓：1） */
url[0] = "http://www.bio.titech.ac.jp/out/out_others/2010opencampus/opencampus2010.html"; target[0] = 0;






url[1] = "http://www.bio.titech.ac.jp/out/outline/invitation.html"; target[1] = 0;

url[2] = "http://www.bio.titech.ac.jp/out/out_others/examtest-info.html"; target[2] = 0;

url[3] = "http://www.bio.titech.ac.jp/out/out_others/opencampus.html"; target[2] = 0;

url[4] = "http://www.bio.titech.ac.jp/out/information/chart.html"; target[3] = 0;

url[5] = "http://www.bio.titech.ac.jp/out/event/kuramae.html"; target[4] = 0;

url[6] = "http://www.bio.titech.ac.jp/out/disclosure/alumni.html"; target[5] = 0;




moji[1] = "研究科学部長より";
moji[2] = "大学院修士課程入試情報";
moji[3] = "OpenCampus";


moji[4] = "組織案内";
moji[5] = "蔵前ゼミ";
moji[6] = "同窓会ニュースレター";




function jump(n) {

if (target[n]==1) {
document.write('<a href="' + url[n] + '" target="blank">' + moji[n] + '</a>');
}

else {
document.write('<a href="' + url[n] + '">' + moji[n] + '</a>');
}
}








