fontSize = 100;

function init(){
		
	if(GetCookie("fontSize")!="")
	{
		fontSize = parseInt(GetCookie("fontSize"));
	}
	else
	{
		fontsize = 100;
	}
}


function resizeTextUp(){
	init();
	fontSize = fontSize + 10;
	SetCookie("fontSize" , fontSize, null, "/");
	document.body.style.fontSize = fontSize + "%";		
}


function resizeTextDown(){
	init();
	fontSize = fontSize - 10;
	SetCookie("fontSize" , fontSize, null, "/");
	document.body.style.fontSize = fontSize + "%";		
}

function initText()
{
	init();
	document.body.style.fontSize = fontSize + "%";	
}