function clearInput(value, id) {
	var input = document.getElementById(id);

	if(value == input.value)
		input.value = "";
}


function resetInput(value, id) {
	var input = document.getElementById(id);

	if(input.value == "")
		input.value = value;
}