function doBlurOn(el, text) {
    if (el.value == '') el.value = text; el.className = ''
}
function doFocusOn(el, text) {
    if (el.value == text) el.value = ''; el.className = 'active';
}
