/* FUNCTIONS */
function ClearInputValue(Element, DefaultValue) {
    Element.value = Element.value.replace(eval('/^' + DefaultValue + '$/'), '');
    if (typeof(Element.onblur) != 'function') {
        Element.onblur = function() {
            Element.value = Element.value.replace(/^$/, DefaultValue);
        }
    }
}
