	function h1( id )
	{
		if ( id != "" )
		{
			var eL = document.getElementById(id);
			if ( eL.style.backgroundColor == "" ) 
				{ 
					eL.style.backgroundColor	= "#0F7FBD"; 
					eL.style.cursor 			= "hand";
					eL.style.color 				= "white"; 
				}
			else 
				{ 	
					eL.style.backgroundColor = ""; 
					eL.style.color='black'; 
				}
		}
	}
	
	function Redir( url )
	{
		window.location= url;
	}