function s_hliste(kenner_id)
{
    parts=regionen_2[kenner_id].split('#');
    window.location.href=uebergabe_hotel+'&zielgebiets_kenner='+parts[2]+'&detail=hotel';
}
function zur_suche(showresult)
{
    window.location.href=uebergabe_hotel+'&zielgebiets_kenner=-1&showresult='+showresult;
}
function s_liste_tabelle(nurflug,pfad_images)
{
   if(regionen_2.length <= 0) {}
   else
   {
        for(i=0;i<regionen_2.length;i++)
        {
            parts_2=regionen_2[i].split("#");
            
            if(parts_2[2]>=10000) str_glhotelTitel="";
            if(parts_2[2]==10032){
                str_glhotelTitel='title="Der Hotelname wird Ihnen nach Ankunft im Zielgebiet mitgeteilt"';
            }

            if(parts_2[4]=='')
            {
                document.write('<tr>');
                document.write('<td class="region" colspan="5" height="20">');
                if(nurflug!=1)
                {
                    document.write('&nbsp;<a href="javascript:s_hliste('+i+');" class="aufrufziel" '+str_glhotelTitel+'><b></b>'+parts_2[0]+'</a>');
                }
                else {
                    document.write('&nbsp;<b>'+parts_2[0]+'</b>');
                }
                document.write('</td>');
                document.write('</tr>');
            }
            else
            {
                document.write('<tr>');
                document.write('<td class="ziel" width="28">&nbsp;');
                document.write('<a href="javascript:openhbox(\'\',\''+parts_2[4]+'\',\''+parts_2[4]+'\',\'\',\'\',\'\',\'\');"><img src="'+pfad_images+'/info.gif" alt="" border="0"></a>');
                document.write('</td>');
                document.write('<td class="ziel" width="192">');
                document.write('<a href="javascript:s_hliste('+i+');" class="aufrufziel" '+str_glhotelTitel+'>'+parts_2[0]+'</a>');
                document.write('</td>');
                document.write('<td class="ziel">');
                document.write('<img src="'+pfad_images+'/'+parts_2[1]+'" alt="" border="0">');
                document.write('</td>');
                document.write('<td class="ziel">');
                if(parts_2[6]!=""){
                    document.write('&nbsp;&nbsp;&nbsp;<img src="'+pfad_images+'/sonne.gif" alt="Lufttemperatur" width="15" height="15" border="0" align="absmiddle" hspace="2">'+parts_2[6]+'&deg;C&nbsp;');
                }
                if(parts_2[7]!=""){
                    document.write('<img src="'+pfad_images+'/wasser.gif" alt="Wassertemperatur" width="15" height="9" border="0" align="absmiddle" hspace="2">'+parts_2[7]+'&deg;C');
                }
                document.write('&nbsp;</td>');
                document.write('<td class="ziel" align="right">');
                document.write('<a href="javascript:s_hliste('+i+');" class="aufrufziel_preis">ab '+parts_2[5]+',-&euro;</a>&nbsp;');
                document.write('</td>');
                document.write('</tr>');
            }
        }
   }
}
