function dispprintbt() {
	document.write('<p id="printbt"><a href="javascript:void(0)" onClick="printpage()" title="このページを印刷する"><span>印刷</span></a></p>');
	if (window.print != null) {
		document.getElementById('title').style.margin="0 72px 0 185px";
		document.getElementById('printbt').style.display="block";
	}
}
function printpage() {
	window.print(); 
}