// <br>
// Copyright (c) 2001, Streampoint Financial. All rights reserved.<br>
// <br>
// This computer program is protected by copyright law and international treaties.<br>
// Unauthorized reproduction or distribution of this program, or any portion of it,<br>
// may result in severe civil and criminal penalties, and will be prosecuted to the<br>
// maximum extent possible under the law.<br>
// <br>
// Class: NA <br> (navigation utilities)
// <br>
// Author: Rob Allen<br>
// Last Modified: March 14, 2001<br>
// <script>
//	

	var _HOVER_COLOR = "red";
	var _UNHOVER_COLOR = "blue";

	function HoverButton(_paramID)
	{
		window.document.getElementById(_paramID).style.color = _HOVER_COLOR;		
	}// HoverButton()
	
	function UnHoverButton(_paramID)
	{	
		window.document.getElementById(_paramID).style.color = _UNHOVER_COLOR;				
	}// UnHoverButton()


