function blurIt(tag) {
	arr = document.getElementsByTagName(tag);
	for (i = 0; i < arr.length; i++) {
		if (!arr[i].blur) return;
		arr[i].onfocus = function() {
			this.blur();
		}
	}
}

function goUrl(url) {
	document.location.href = url;
	// setTimeout('document.location.href="../'+url+'"',100 );
	return true;
}
