﻿

	function showNewColor(tagID) {

		// setup vars

		var defaultColor = "white";

		var newColor = "#00ccff";

		

		// other supported styles

		// myElement.style.fontSize = "24px";

		// myElement.style.fontFamily = "Verdana, Arial, Courier New";

		// myElement.style.textDecoration = "underline";

		// myElement.style.fontWeight = "normal";

		// myElement.style.visibility=="hidden";

				



					// change style to new color

					document.getElementById(tagID).style.color = newColor;

		

	}

