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") == "blank") 
     anchor.target = "_blank"; 
 } 
} 
window.onload = externalLinks;

function PopupPic(sPicURL) { 
 window.open( "popup.html?"+sPicURL, "",  
 "resizable=1,HEIGHT=200,WIDTH=200"); 
} 

function PopupPage(sPageURL, sWidth, sHeight) { 
 window.open( sPageURL, "", "resizable=yes,top=150,left=110,scrollbars=1,toolbar=0,HEIGHT="+sHeight+",WIDTH="+sWidth); 
} 
