if (document.location.hash == "") {//no location.hash
	top.document.links[focuslink].focus();//set focus to link specified in /site/scripts/focuslink.js
}
else {//location.hash exists
	if (document.getElementById) {
		document.getElementById(document.location.hash.substring(1,document.location.hash.length)).focus();//set focus to element specified in location.hash
	}
}
