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