// Form activation script
function activate(brillig) {
	document.getElementById('config').name = "config";
	document.getElementById('config').value = brillig;
}

function setup() {
	// This function makes external links open in new windows (rel="external" in anchor works too)
	if (!document.getElementsByTagName) return;
	var anchors = document.getElementsByTagName("a");
	for (var i=0; i<anchors.length; i++) {
		var URL = anchors[i].href;
		if ((URL.search('cajun-daves')===-1 && URL.search('http')!==-1) || anchors[i].rel==='external') anchors[i].target = "_blank";
	}
}
window.onload = setup; 