/* _utilLinks.js */
//------------ Vars ------------//
var fontSize = 1;
var textSize = '';
var textS = "textS";
var textM = "textM";
var textL = "textL";
//------------/Vars ------------//
//------------ Functions ------------//
function textResize(textSize){
/*++ texts ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
	if(textSize == 'textS' && fontSize >= 0.8){
		fontSize = fontSize - 0.1;
		document.body.style.fontSize = fontSize + 'em';
	}
/*++ textM ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
	if(textSize == 'textM'){
		document.body.style.fontSize = '1em';
		fontSize = 1;
	}
/*++ textL ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
	if(textSize == 'textL' && fontSize <= 1.5){
		fontSize = fontSize + 0.1;
		document.body.style.fontSize = fontSize + 'em';
	}
}

//------------/Functions ------------//

