//This script takes all tags that have the title "External Link" and sets the target to _blank
//This makes for easier external linking in xhtml strict documents
//Written by Ted Betzler

atags=document.getElementsByTagName("a");

for (ii=0; ii<atags.length; ii++)
{
	if(atags[ii].title == "External Link")
		atags[ii].target="_blank";
}