// opens links to offsite uris in new windows
function spawnWindows() {
	for (var i = 0; i < (document.links.length); i++) {
		if (document.links[i].href.substring(0,7) == "http://") {
			if ((document.links[i].href.substring(7,23) != "www.eighty-watt.") &&
			    (document.links[i].href.substring(7,19) != "eighty-watt.")) {
				document.links[i].target = "_blank";
}	}	}	}
