// -- this is the multi-use input field if-empty binder
function autoset(cont, def) {
if(cont.value == def)
    cont.value = '';
}
function unautoset(cont, def) {
if(cont.value == '')
    cont.value = def;
}
