// JavaScript Document


function clearTxt(txt,x){
	if (x.value == txt) x.value = '';
}

function resetTxt(txt,x){
	if (x.value == '') x.value = txt;
}
