function MapTooltipHtml ( Info ) {var tempNos = Info['n'].split('[NEW]');var tempAdr = Info['a'].split('[NEW]');var tempUrl = Info['u'].split('[NEW]');var tempLogo = Info['l'].split('[NEW]');var tempTel = Info['t'].split('[NEW]');var tempMail = Info['m'].split('[NEW]');var WinHtml = '
' + WinContent( tempNos, tempAdr, tempUrl, tempLogo, tempTel, tempMail ) + '
';function WinContent ( Nos, Adr, Url, Logo, Tel, Mail ) {var Content = '';for ( var S = 0; S < Nos.length-1; S++ ) {if ( (Nos.length-1) == 1 ) Content += '
'; else Content += '
';Content += '

' + Nos[S] + '

' + Adr[S] + '

'; if ( (Nos.length-1) == 1 ) { Content += '
    '; if ( Logo[S] !== '' ) { Content += '';};Content += '
  • ' + Tel[S] + '
  • ' + Mail[S] + '
'; };Content += '
';}return Content;}return WinHtml;}