window.onload = function() {
	if (!document.getElementsByTagName) {
		return false;
		}
	var links = document.getElementsByTagName("a");
	for (var i=0; i < links.length; i++) {
		if ((links[i].getAttribute("class") == "external") || (links[i].getAttribute("class") == "showFullSize")) {
			links[i].onclick = function() {
				window.open(this.getAttribute("href"));
				return false;
				}
			}
		}
	}