/*サブウィンドウopen*/
	/*ウィンドウオープンA*/
	function opena(url) {
	window.open(url,'window_a','width=500,height=600,scrollbars=yes,resizable=no,menubar=no,toolbar=no');
	}
	/*ウィンドウオープンB*/
	function openb(url) {
	window.open(url,'window_a','width=300,height=120,scrollbars=no,resizable=no,menubar=no,toolbar=no');
	}
	/*ウィンドウオープンC/メールマガジンバックナンバー用*/
	function openc(url) {
	window.open(url,'window_c','width=480,height=400,scrollbars=yes,resizable=no,menubar=no,toolbar=no');
	}
	/*ウィンドウクローズ*/
	function windowclose()  {
	   opena = parent.window.close();
	}

/*更新日の表示*/
function ShowModifiedDate(){
	document.write (document.lastModified);
}


