function resizeText(pSize) {
	var a = getCookieValue('font-size');
	var fontsize = "85";
	if(pSize!='start') {
		fontsize = pSize;
		writeSessionCookie("font-size",pSize);
	} else {
		if(a) {
			fontsize = a;
		}
	}
	document.body.style.fontSize = fontsize + "%";
}