function checkValue (input) {
	if(input.value==input.defaultValue)
		input.value="";
	else if(input.value=="")
		input.value=input.defaultValue;
}