function resizeText(multiplier,strTarget) {
	var xSize;
	if (document.body.style.fontSize == "") {
		document.body.style.fontSize = "1.0em";
	}

	// PARSE OUT INTEGER FROM MULTIPLIER	
	if(isNaN(multiplier) || multiplier == 0) {
		xSize = "";
	} else {
		xSize = parseFloat(document.body.style.fontSize) + (multiplier * 0.2) + "em";
	}

	// BODY TEXT SIZE
	document.body.style.fontSize = xSize;

	// PAGE ELEMENTS TEXT SIZE
	var m = document.getElementsByName(strTarget);
	var i = 0;
	if(m.length > 0){
		for(var i = 0;i < m.length ;i++) {
			m[i].style.fontSize = xSize;
		}
	}
}

