
function disptime( ){

	timenow = new Date( );
document.writeln("<center>","<p>","今の時間は",timenow.getHours( ));
document.writeln(":",timenow.getMinutes( ));
document.writeln(":",timenow.getSeconds( ),"</p>");
document.writeln("<p>","<a href='javascript:history.back()'>","前へ戻る","</a>","</p>","</center>");

}

