// nobox.js
//script to get rid of annoying 'bounding box' around graphic link when clicked
function nobox(x) {
	if(navigator.appName == 'Microsoft Internet Explorer' || document.all)
	x.blur();
}