if(top!= self) top.location.href = self.location.href

function externalLinks() { 
	if (!document.getElementsByTagName) return; 
	var anchors = document.getElementsByTagName("a"); 
	for (var i=0; i<anchors.length; i++) { 
		var anchor = anchors[i]; 
		if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external") anchor.target = "_blank"; 
	} 
} 
window.onload = externalLinks;

function bookmarkAdd() {
	if (window.sidebar) window.sidebar.addPanel(document.title, document.location.href,"");  // Mozilla Firefox Bookmark
	else if( window.external ) window.external.AddFavorite(document.location.href, document.title); // IE Favorite
	else if(window.opera && window.print) return true; // Opera Hotlist
}

function bookmarkCreateLink() {
	if (window.external) document.write('<a href="javascript:bookmarkAdd()");">add to browser\'s favorites</a> | ');
	else  if (window.sidebar) document.write('<a href="javascript:bookmarkAdd()");">bookmark page</a> | '); 
	else if (window.opera && window.print) document.write('<a href="javascript:bookmarkAdd()");">add bookmark</a> | ');
}