function gotoPosition() {
	if (window.location.hash != "") {
		return;
	}
		
	var p = window.location.pathname; 
	if (p == "") { 
		return; 
	}
	if (p.indexOf("/reply/") >= 0) {
		var aa = document.getElementsByName("reply"); 
		if (aa != null) { 
			aa[0].scrollIntoView(true); 
			return;
		} 
	}
	p = p.substr(p.lastIndexOf("/")+1);
	if (p.substr(0, 1) != "G") {
		return;
	}
	
	var a = document.getElementsByName(p); 
	if (a != null) { 
		a[0].scrollIntoView(true); 
	} 
}
