function jumpToAnchor() {
   window.location = window.location + "#title";
}
window.onload = function() {
	jumpToAnchor();
}