Might not be a way around it. This might work though (in the head):
Code:
<script type="text/javascript">
document.title='bleh'
</script>
or put the above code at the end of the body, just before </body> or use this (below) in the body tag itself as:
Code:
<body onload="document.title='bleh'">
if you already have onload events in the body tag use:
Code:
<body onload="existingevent;document.title='bleh'">
if you have window.onload=something on the page, find something() and make it the first line there:
Code:
function something(){
document.title='bleh';
Oh, and change bleh to the title you want displayed.
Bookmarks