function scrollcontent(anchor, yoffset){
	var anchorpos = document.getElementById(anchor).offsetTop;
	window.scrollTo(0,anchorpos + yoffset);
	return false
}