if (document.all && document.styleSheets && document.styleSheets[0] && document.styleSheets[0].addRule)
{
	document.styleSheets[0].addRule('div#header h1 a', 'behavior: url(css/iepngfix.htc)');
	document.styleSheets[0].addRule('li a', 'behavior: url(css/iepngfix.htc)');
	document.styleSheets[0].addRule('div#middle', 'behavior: url(css/iepngfix.htc)');
	document.styleSheets[0].addRule('div#middle h2', 'behavior: url(css/iepngfix.htc)');
}
		
function relTags() {

	if (document.getElementsByTagName) {
	
		var anchors = document.getElementsByTagName( "a" );
		
		for (var loop = 0; loop < anchors.length; loop++) {
			
			var anchor = anchors[loop];
			if (anchor.getAttribute("href") && anchor.getAttribute("rel") == "external") {
				anchor.target = "_blank";
			}
		}
	}
}		
window.onload = function() {
	relTags();
}

