/* Copyright (C) 2002-2007 by Home of the Brave
   Web http://home.of.the.brave.de
   E-Mail info@brave.de */
/* $Revision: 1.2 $ $Date: 2007/01/04 17:29:21 $ */

/* owner: Simon.Leidig@brave.de */

function set_input_comment(id, comment)
{
  if (document.getElementById) {
    var element = document.getElementById(id);

    if (element) {
      if (comment) {
        element.value = comment;
      } else if (element.title) {
        element.value = element.title;
      }
      element.onfocus = function () {
        if (document.getElementById) {
          this.onfocus = null;
          this.value   = '';
        }
      };
    }
  }
}

