function bm(title, url){
if (document.all)
window.external.AddFavorite(url, title);
else if (window.sidebar)
window.sidebar.addPanel(title, url, "")
}

function popUp(url){
	window.open(url,"pop","width=650,height=350,toolbars=0,scrollbars=1")
}

function popUpN(url){
	window.open(url,"pop","width=550,height=200,toolbars=0,scrollbars=1")
}

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"; 
   if (anchor.getAttribute("href") && 
       anchor.getAttribute("rel") == "tag")
     anchor.target = "_blank"; 
 } 
} 
window.onload = externalLinks;
