PATH://adammoro.net/code/javascript/

Free JavaScript: Change Title Tag

Place the following code on a page to change the Title tag after the page has loaded.

			<script>function adjustTitle() { document.title = "New Title Here"; } window.onload = adjustTitle; </script>