// JavaScript Document

function open_info(num) { //v2.0
	if(num == 0)
  window.open("info/index.html","new","scrollbars=yes,resizable=yes,width=450,height=550");
	if(num == 1)
  window.open("../info/index.html","new","scrollbars=yes,resizable=yes,width=450,height=550");
		if(num == 2)
  window.open("../../info/index.html","new","scrollbars=yes,resizable=yes,width=450,height=550");
}

function open_access(num) { //v2.0
	if(num == 0)
  window.open("info/access.html","new","scrollbars=yes,resizable=yes,width=450,height=700");
	if(num == 1)
  window.open("../info/access.html","new","scrollbars=yes,resizable=yes,width=450,height=700");
	if(num == 2)
  window.open("../../info/access.html","new","scrollbars=yes,resizable=yes,width=450,height=700");
}

function open_sitemap(num) { //v2.0
	if(num == 0)
  window.open("info/sitemap.html","new","scrollbars=yes,resizable=yes,width=450,height=550");
	if(num == 1)
  window.open("../info/sitemap.html","new","scrollbars=yes,resizable=yes,width=450,height=550");		
	if(num == 2)
  window.open("../../info/sitemap.html","new","scrollbars=yes,resizable=yes,width=450,height=550");		
}

function open_rss() { //v2.0
  window.open("rss/index.rss","rss","width=400,height=500");		
}

function open_prf(num) { //v2.0
	if(num != 0) {
  prf = window.open("","prf","scrollbars=yes,resizable=yes,width=400,height=500");		
	 if(num == 1) 
   prf.location = "sato.html";
	 if(num == 2) 
   prf.location = "fujihata.html";
	 if(num == 3) 
   prf.location = "kiriyama.html";
	 if(num == 4) 
   prf.location = "katsura.html";
	 if(num == 5) 
   prf.location = "kimura.html";
	 if(num == 6) 
   prf.location = "#.html";
	 if(num == 7) 
   prf.location = "#.html";
 }
}

