	function  FocusInput(obj,sf,sfbg,fb)
	{
		if (document.getElementById || document.all)
		{
		obj.style.color=sf;
		obj.style.backgroundColor=sfbg;
		obj.style.fontWeight=fb;
		}
	}
	
	function BlurInput(obj,sf,sfbg,fb)
	{
		if (document.getElementById || document.all)
		{
		obj.style.color=sf;
		obj.style.backgroundColor=sfbg;
		obj.style.fontWeight=fb;
		}
	}
