// JavaScript Document

function clearText(thefield){
	if (thefield.defaultValue==thefield.value){
		thefield.style.color="#000000";
		thefield.value = "";
	}
};

function faultText(thefield){
	if (thefield.value==""){
		thefield.style.color="#999999";
		thefield.value = thefield.defaultValue;
	}
}