var recordToSearch='';
var showSearchUi=true;
function getSearchBarUi(showSearchBar){
if(showSearchBar==true){
return "<div id='searchUi' style='display:none;'><input id='searchInput' placeholder='🔎 Contact search' style='padding: 6px 12px;width:100%;margin:5px;border:0px;-moz-border-radius:10px;-webkit-border-radius:10px;border-radius:10px;' onkeyup='javascript:filter()'><div id='recordList' style='overflow:hidden;background-color:lightgray;width:100%;margin:5px;-moz-border-radius:10px;-webkit-border-radius:10px;border-radius:10px;'></div></div>";}
else{return '';}
}
function toggleUiVisible(){
if(showSearchUi==true){
document.getElementById('recordList').innerHTML=recordToSearch;
showSearchUi=false;
document.getElementById('searchUi').style.display='';}else{
showSearchUi=true;
document.getElementById('searchUi').style.display='none';}
}
function setRecordToSearch(records){
recordToSearch='';
for(var i=0;i<records.length;i++){
var recordItem=records[i].split('^*^');
recordToSearch=recordToSearch+"<div class='onHover' style='cursor:pointer;padding:15px 12px;font:20px Calibri;' onclick='javascript:searchBarItemSelected('"+recordItem[0]+"')' >"+recordItem[0]+"</div>";
}
toggleUiVisible();
}
function filter(){
var searchText=document.getElementById('searchInput').value.toLowerCase();
var list=(document.getElementById('recordList')).getElementsByTagName('div');
for(var i=0;i<list.length;i++){
if((list[i].innerHTML.toLowerCase()).indexOf(searchText)>-1){
list[i].style.display='';
}
else{
list[i].style.display='none';}
}
}