function resizeCheck() {
	var pageWidth = (window.innerWidth != null? window.innerWidth: document.body != null? document.body.clientWidth:null);
	if(pageWidth <= 800) {
		document.getElementById("pagecontent").style.paddingRight="50px";
		window.scroll(98,0);
	}
	else document.getElementById("pagecontent").style.paddingRight="20px";
}

function resizeCheckBlog() {
	var pageWidth = (window.innerWidth != null? window.innerWidth: document.body != null? document.body.clientWidth:null);
	if(pageWidth <= 800) {
		document.getElementById("content").style.paddingRight="50px";
		window.scroll(98,0);
	}
	else document.getElementById("content").style.paddingRight="20px";
}