<!--//▼階層メニュー

function display(tName)
{
tMenu = document.getElementById(tName).style;
if (tMenu.display == 'none')
{
tMenu.display = "block";
}else{
tMenu.display = "none";
}
}
// -->


<!--//▼詳細小窓
function details(theURI) {
 PopUpWin = window.open(theURI,'theWin','scrollbars=0,width=400,height=480,resizable=1,directories=0,toolbar=0,status=1,location=0');
 PopUpWin.focus();
}
// -->


<!--//▼メッセージテキスト
var msg='　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　　建学の精神「実学教育」と「人格の陶冶」　　教育の目的・・・人に愛される人（LOVE）　信頼される人（TRUST）　尊敬される人（RESPECT）';
var speed=300;
var move=1;

function disp(){
	msg=msg.substring(move,msg.length)+msg.substring(0,move);
	document.message.field.value=msg;
	setTimeout("disp()",speed);
	}
// -->