﻿function bluranchors() {	if(document.getElementsByTagName) {		var a = document.getElementsByTagName("a");		for(var i = 0; i < a.length; i++){			a[i].onfocus = function(){this.blur();};			// don't open order form in new window			if (a[i].href=='http://server9.arrowtech.net/~centrala/order_form.cfm') {				a[i].target='_self';			}		}	}}function init() {	bluranchors();}window.onload = init;