function formatItem(row) {
	return row[0];
}

function formatMatch(row) {
	return row[0];
}

function formatResult(row) {
	return row[0].replace(/(<.+?>)/gi, ''); //+"werner";
}

function formatItemForSearch(row, nr, ges, search) {
    return row[0].replace(/(<.+?>)/gi, '');

}

function formatItemRecipient(row) {
	
	return '<img src="'+row[1]+'" width="40" height="40" style="margin-right:3px;float:left;">'+row[0]+'';
}

function checkBrowserName(name){  
   var agent = navigator.userAgent.toLowerCase();  
   if (agent.indexOf(name.toLowerCase())>-1) {  
     return true;  
   }  
   return false;  
  }  
