// Change frame title
if (top.document != self.document) 
	top.document.title = document.title;

// Change status bar
window.status = document.title;

// Link status message
function init(){
	lObj=document.links
	for (i=0;i<lObj.length;i++) {
		lObj[i].onmouseover=function() {
			if (this.childNodes[0].tagName=="IMG") { 
				window.status="" +this.childNodes[0].alt;return true}
			else
				window.status="" +this.innerHTML.replace(/<\/?[^<>]+>/g,'');return true}
		lObj[i].onmouseout=function(){window.status=document.title;return true}
	}
}
window.onload=function (){init()}
