// For opening links in new windows while also validating

function externalLinks() {
	if (!document.getElementsByTagName) {
		return;
	}
	
	// Anchors
	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;

// Copyright 2004 Drew Hamlin. All rights reserved.


// Pop-up window script
// <a href="javascript:pop('[page URL]',[width],[height])">[link text]</a>

function pop(url, width, height) {
    var Win = window.open(url,"pop",'width=' + width + ',height=' + height + ',resizable=1,scrollbars=yes,status=no,menubar=no' );
Win.focus();
}

// pop-up script from Think Inkless: http://www.thinkinkless.com/
