function clearInput(input)
{
	if (input.value == "Username")
	{
		input.value = "";	
	}
	else
	{
		input.style.backgroundImage = "none";	
	}
}

function clearInputPassword(input)
{
	input.style.backgroundImage = "none";
}