function resizeText(multiplier) {
	//alert(parseFloat(document.getElementById('a1').style.fontSize));
	if (isNaN(parseFloat(document.getElementById('a1').style.fontSize)) || parseFloat(document.getElementById('a1').style.fontSize) < 2) {
		if (document.getElementById('a1').style.fontSize == "") {
			document.getElementById('a1').style.fontSize = "1.0em";
		} document.getElementById('a1').style.fontSize = parseFloat(document.getElementById('a1').style.fontSize) + (multiplier * 0.2) + "em";
		if (document.getElementById('a2').style.fontSize == "") {
			document.getElementById('a2').style.fontSize = "1.0em";
		} document.getElementById('a2').style.fontSize = parseFloat(document.getElementById('a2').style.fontSize) + (multiplier * 0.2) + "em";
		if (document.getElementById('a3').style.fontSize == "") {
			document.getElementById('a3').style.fontSize = "1.0em";
		} document.getElementById('a3').style.fontSize = parseFloat(document.getElementById('a3').style.fontSize) + (multiplier * 0.2) + "em";
		if (document.getElementById('a4').style.fontSize == "") {
			document.getElementById('a4').style.fontSize = "1.0em";
		} document.getElementById('a4').style.fontSize = parseFloat(document.getElementById('a4').style.fontSize) + (multiplier * 0.2) + "em";
	}
}
function deresizeText(multiplier) {
	if (isNaN(parseFloat(document.getElementById('a1').style.fontSize)) || parseFloat(document.getElementById('a1').style.fontSize) > 0.6) {
		if (document.getElementById('a1').style.fontSize == "") {
			document.getElementById('a1').style.fontSize = "1.0em";
		} document.getElementById('a1').style.fontSize = parseFloat(document.getElementById('a1').style.fontSize) + (multiplier * 0.2) + "em";
		if (document.getElementById('a2').style.fontSize == "") {
			document.getElementById('a2').style.fontSize = "1.0em";
		} document.getElementById('a2').style.fontSize = parseFloat(document.getElementById('a2').style.fontSize) + (multiplier * 0.2) + "em";
		if (document.getElementById('a3').style.fontSize == "") {
			document.getElementById('a3').style.fontSize = "1.0em";
		} document.getElementById('a3').style.fontSize = parseFloat(document.getElementById('a3').style.fontSize) + (multiplier * 0.2) + "em";
		if (document.getElementById('a4').style.fontSize == "") {
			document.getElementById('a4').style.fontSize = "1.0em";
		} document.getElementById('a4').style.fontSize = parseFloat(document.getElementById('a4').style.fontSize) + (multiplier * 0.2) + "em";
	}
}
