<!--

    window.onload = function()
    {
        var field = document.getElementById('sahkoposti');

        if (!field)
            return;

        field.onfocus = function()
        {
            if (this.value == this.defaultValue)
                this.value = '';
        };

        field.onblur = function()
        {
            if (this.value == '')
                this.value = this.defaultValue;
        };
    };

// -->