// Creates Drop Down

new UvumiDropdown('nav02');


// clears and replaces text in form input fields and textareas

function clearText(thefield) {
  if (thefield.defaultValue==thefield.value) { thefield.value = "" }
} 

function replaceText(thefield) {
  if (thefield.value=="") { thefield.value = thefield.defaultValue }
}

