// JavaScript Document

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

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