//*************************************************************************************//
//* ファイル名：Common.js
//* 機能概要  ：共通で使用するJavaScriptの関数群
//*************************************************************************************//

/* p2より拝借 - メニューカテゴリの開閉のためのJavaScript */if(document.getElementById){	document.writeln('<style type="text/css" media="all">');	document.writeln('<!--');	document.writeln('.itas_hide{display:none;}');	document.writeln('-->');	document.writeln('</style>');}function showhide(id){	var disp = document.getElementById(id).style.display;	var iid = "i" + id;		if(disp == "block"){		document.getElementById(id).style.display = "none";		document.images[iid].src="/common/image/cursol_close.png";	}else{		document.getElementById(id).style.display = "block";		document.images[iid].src="/common/image/cursol_open.png";	}	return false;}