var inputVal = "";

function defaultInput(element){
	if(element.value==""){
		if(element.name=="login_name")
		{
			var inputVal="username";
		}else if(element.name=="password"){
			var inputVal="password";
		}
		element.value=inputVal;
		element.style.color="#999999";
	}
}
function clearInput(element){
	if(!inputVal[element]){
		inputVal[element] = element.value;
		element.value="";
		element.style.color="black";
	}
}
function replaceInput(element){
	if(element.value==""){
		if(element.name=="login_name"){
			var inputVal="username";
		}else if(element.name=="password"){
			var inputVal="password";
		}
		element.value=inputVal;
		element.style.color="#999999";
	}
}
