function ClearFieldFocus(f,dt) {
if (f.value==dt) f.value='';
}
function ClearFieldBlur(f,dt) {
if (f.value=='') f.value=dt;
}

