﻿// *** Search result ***
function selectRow(div) {
    div.style.backgroundColor = '#efefef';
}

function unselectRow(div) {
    div.style.backgroundColor = '#ffffff';
}

var _whattext = 'Företag, sökord, telefonnummer';
var _wheretext = 'Område, adress, ort';
// Autocomplete description text
function toggleDescription(obj, text) {
    if ((obj.value == '') || (obj.value == _whattext) || (obj.value == _wheretext)) {
        obj.value = text;
        if (text == '') {
            obj.style.color = 'black';
        } else {
            obj.style.color = 'silver';
        }
    }
}
function mytest(obj) {
    if (obj) { 
    if ((obj.value != '') || (obj.value != _whattext) || (obj.value != _wheretext)) {
        obj.style.color = 'black';
    }
}
}
