<!--
		function newwin(newurl, winn, winw, winh, features) {
			var winleft = (screen.width - winw) / 2;
			var wintop = (screen.height - winh) / 2;
			winstate = features+',height='+winh+',width='+winw+',top='+wintop+',left='+winleft;
			win = window.open(newurl, winn, winstate)
			if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
		}
		function nextwin() {
			newwin('oshirase.html','1','620','695','toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no');
		}
		// -->
<!--
var Default = 2;
var tags    = new Array('div','td','tr');
var sizing  = new Array('xx-small','x-small','small','medium','large');

function FontChange(target,tarF) {
  if (!document.getElementById) return
  var dore = document,tarS = null,fontSize = Default,value,su,cTags;fontSize += tarF;
  if (fontSize < 0) fontSize = 0;
  if (fontSize > 6) fontSize = 6;
  Default = fontSize;
  if (!(tarS = dore.getElementById(target))) tarS = dore.getElementsByTagName(target)[0];
  tarS.style.fontSize = sizing[fontSize];
  for (value = 0 ; value < tags.length ; value++) {
    cTags = tarS.getElementsByTagName(tags[value]);
    for (su = 0 ; su < cTags.length ; su++) cTags[su].style.fontSize = sizing[fontSize];
  }
}
//-->
