// JavaScript Document

function clearField(htmlObject) {
   if (htmlObject != null) {
       htmlObject.value = "";
   }
}
