/*  ====================================ブラウザ判別関数============================================== */
function distinction(element_name){
	if(document.all) OBJ = document.all(element_name).style;
	else if(document.getElementById) OBJ = document.getElementById(element_name).style;
	else if(document.layers)OBJ = document.layers(element_name);
}
/*  ====================================ブラウザ判別関数============================================== */
/*  ====================================Layer表示関数============================================== */
function on(element_name) {
	distinction(element_name);
	OBJ.visibility = "visible";
}
/*  ====================================Layer表示関数============================================== */
/*  ====================================Layer非表示関数============================================== */
function off(element_name) {
	distinction(element_name);
	OBJ.visibility = "hidden";
}
/*  ====================================Layer非表示関数============================================== */
/*  ====================================SubWindow表示関数============================================== */
function explain(url) { 
	window.open(url,"_blank","directories=no,location=no.menubar=no,scrollbars=no,status=no,titlebar=no,toolbar=no");
}
/*  ====================================SubWindow表示関数============================================== */
/*  ====================================Hand表示関数============================================== */
function hand(){
	mouse.style.cursor=hand;
}
/*  ====================================Hand表示関数============================================== */
