﻿var fontSize=12;

function Resize(direction) 
{
	if (direction == "Reset")
	{
		fontSize = 12;
	}
	else if (direction == "Up" && fontSize<24) 
	{
		fontSize = fontSize + 2;
	}
    	else if(direction == "Down" && fontSize > 12)
	{
		fontSize = fontSize - 2;
	}
	document.getElementById('Resize').style.fontSize=fontSize + 'px';
}
