
function inputFocus(obj,txt) {
	if (obj.value == txt) obj.value = "";
}
function inputBlur(obj,txt){
	if (obj.value == "") obj.value = txt;
}

