How to know which tomcat version i am using?

Hello All, On my system tomcat is already installed. Is there any way to find out which tomcat version i am using? Thanks in advance.
[161 byte] By [Abhijit.Shingatea] at [2007-10-2 18:21:21]
# 1
If you have Tomcat installed on your system, try the following url: http://localhost:8080This should display the Tomcat documentation. The version number will be in the upper left hand.
Gita_Weinera at 2007-7-13 19:41:56 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2
The version is mentioned in the file:"$TOMCAT\webapps\ROOT\RELEASE-NOTES.txt
forum@123a at 2007-7-13 19:41:56 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 3
Check the log file.The first few lines show the version of Tomcat, JVM, etc....
saracgia at 2007-7-13 19:41:56 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 4

[nobr]A useful little code snippet to put in a JSP file.

<h2> Server Info </h2>

Server info = <%= application.getServerInfo() %> <br>

Servlet engine version = <%= application.getMajorVersion() %>.<%= application.getMinorVersion() %><br>

Java version = <%= System.getProperty("java.vm.version") %><br>

[/nobr]

evnafetsa at 2007-7-13 19:41:56 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...