window.onload = addlinkMsg;

// Adds a status bar message to all links on the page
function addlinkMsg() {
if (!document.getElementsByTagName) return;

// Get all the anchors/links in the document
// and step through them all, assigning events as we go...
var anchors = document.getElementsByTagName('a');
for (var i=0; i < anchors.length; i++) {
anchors[i].onmouseover = function() {window.status = 'My Website Name'; return true;}
anchors[i].onmouseout = function() {window.status = ''; return true;}
}
}
