function killFocus(el, str) {
if( el.value == '' ) {
 el.value = str;
}
}

function grantFocus(el, str) {
if( el.value == str ) {
 el.value = "";
}
}