function openFlash(){
		window.open('flash.asp','flash','width=799,height=427,resizable=no,location=no,menubar=no,scrollbars=no,status=no,toolbar=no');
	}
	
function OpenTobyLeigh(sPage,width,height) {
	var win = window.open(sPage,"","height="+height+",width="+width+",status=no,resizable=no,toolbar=no,menubar=no,location=no,scrollbars=no");
	win.focus();
}

function externalLinks() {
	if (!document.getElementsByTagName) return;
		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;