// JavaScript Document

function clearInput(box) {
	if (box.defaultValue==box.value) {
		box.value = "";
	}
}
