// used on the forms to clear or restore the default text

function clearText(thefield){
	if(thefield.defaultValue==thefield.value) {
                                thefield.value = "";
	}
} 
function addText(thefield){
    if(thefield.value == '') {
                                thefield.value = thefield.defaultValue;
    }
}
