var sb = document.getElementById('edit-search-block-form-1');
if (sb) {
    if (sb.value == '') sb.value = 'sök';
    sb.onfocus = function () {
        if (this.value == 'sök') this.value = '';
    };
    sb.onblur = function () {
        if (this.value == '') this.value = 'sök';
    };
}
var nb = document.getElementById('edit-mail');
if (nb) {
    if (nb.value == '') nb.value = 'ange e-postadress';
    nb.onfocus = function () {
        if (this.value == 'ange e-postadress') this.value = '';
    };
    nb.onblur = function () {
        if (this.value == '') this.value = 'ange e-postadress';
    };
}
