<!--
// this is cosmetic staff, prevents a border around links on mouse down
function removeClickBorder(){
	var l = document.getElementsByTagName("A");
	for(var i=0; i<l.length; i++){
		l[i].onfocus = function(){
			if(this.blur)this.blur();
		};
	}
}
if (document.getElementById){
	removeClickBorder();
}
//-->