



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 openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function gotoURL(oSelRef)
{
	if (oSelRef.selectedIndex > 0)
	{
		oWin = window.open(oSelRef.options[oSelRef.selectedIndex].value,"oWin","location=1,toolbar=1,scrollbars=1,status=1,resizable=1",menubar="1",directories="1");
		oWin.focus();
		oSelRef.selectedIndex = 0;
	}
}

    function printPage() {
      if (window.print)
        window.print()
      else
        alert("Sorry, your browser doesn't support this feature.");
    }



