﻿
function externalLinks() { 
	if( ! document.getElementsByTagName )
		return; 

	var anchors = document.getElementsByTagName("a"); 
	
	for( var i = 0; i < anchors.length; i++ ) { 
		if( anchors[i].getAttribute("href") && anchors[i].getAttribute("rel") == "external" )
			anchors[i].target = "_blank";
			
		if( anchors[i].getAttribute("href") && anchors[i].getAttribute("rel") == "top" )
			anchors[i].target = "_top";			
	}
}

function autoSize() {
	if( navigator.appName == 'Netscape' ) {
		var w=document.getElementById('Table1').clientWidth;
		var h=document.getElementById('Table1').clientHeight;
	} else if( document.all ) {
		var w=document.all['ABMbanner'].clientWidth;	
		var h=document.all['ABMbanner'].clientHeight;
	}
	window.resizeTo( w+10, h+63 );	
	window.focus();
}
