Hi to every one! How can I change the title of the page (the window) after it has been loaded? thanks.
<body onload=change_title('new_title')> <script> function change_title(title){ document.title=title; } </script>