function ClearInput_1(x)
{
// Only Clear box if it has "Login"
inputstring = document.getElementById(x).value;
				if (inputstring=='Login')
				{
					document.getElementById(x).value='';
				}
}

function ValidateInput_1(x)
{
// If the box is empty put back "Login"
inputstring = document.getElementById(x).value;
				if (inputstring=='')
				{
					document.getElementById(x).value='Login';
				}
}

function ClearInput_2(x)
{
// Only Clear box if it has "Password"
inputstring = document.getElementById(x).value;
				if (inputstring=='Password')
				{
					document.getElementById(x).value='';
				}
}

function ValidateInput_2(x)
{
// If the box is empty put back "Password"
inputstring = document.getElementById(x).value;
				if (inputstring=='')
				{
					document.getElementById(x).value='Password';
				}
}
