﻿function getObject(id) {
	if(document.getElementById) {
		obj = document.getElementById(id);
	}
	else if(document.all) {
		obj = document.all.item(id);
	}
	else {
		obj = null;
	}
	return obj;
}
function textSmall() {
	getObject("contentInner").style.fontSize = ".85em";
	getObject("columnRight").style.fontSize = ".85em";

	getObject("textResizeSmall").style.color = "#a2002f";
	getObject("textResizeSmall").style.textDecoration = "underline";
	getObject("textResizeMedium").style.color = "#000000";
	getObject("textResizeMedium").style.textDecoration = "none";
	getObject("textResizeLarge").style.color = "#000000";
	getObject("textResizeLarge").style.textDecoration = "none";
}
function textMedium() {
	getObject("contentInner").style.fontSize = "1em";
	getObject("columnRight").style.fontSize = "1em";
	getObject("textResizeSmall").style.color = "#000000";
	getObject("textResizeSmall").style.textDecoration = "none";
	getObject("textResizeMedium").style.color = "#a2002f";
	getObject("textResizeMedium").style.textDecoration = "underline";
	getObject("textResizeLarge").style.color = "#000000";
	getObject("textResizeLarge").style.textDecoration = "none";
}
function textLarge() {
	getObject("contentInner").style.fontSize = "1.3em";
	getObject("columnRight").style.fontSize = "1.2em";
	getObject("textResizeSmall").style.color = "#000000";
	getObject("textResizeSmall").style.textDecoration = "none";
	getObject("textResizeMedium").style.color = "#000000";
	getObject("textResizeMedium").style.textDecoration = "none";
	getObject("textResizeLarge").style.color = "#a2002f";
	getObject("textResizeLarge").style.textDecoration = "underline";
}