function infoHide(targetId,text)
	{
	if (document.getElementById)
		{
		target = document.getElementById(targetId);

		if (target.value == text)
			{
			target.value = "";
			target.style.color = "#000000";
			}
		}
	}

function infoShow(targetId,text)
	{
	if (document.getElementById)
		{
		target = document.getElementById(targetId);

		if(target.value == "")
			{
			target.value = text;
			target.style.color = "#000000";
			}
		}
	}