function scrollPage(o) {
	var obj;
	if(obj = window.document.getElementById(o)) {
		var curtop = 0;
		if (obj.offsetParent) {
			curtop = obj.offsetTop
			while (obj = obj.offsetParent) {
				curtop += obj.offsetTop
			}
		}
		window.scroll(0,curtop); // horizontal and vertical scroll targets
	}
}
