function clearInput(targetId){
   if (document.getElementById) {
    target = document.getElementById( targetId );
          target.value = "";
   }
}

