function s_hliste(kenner_id,nurflug)
{
    parts=regionen_2[kenner_id].split('#');
    detail=(nurflug==1)?'termine':'hotel';
    window.location.href=uebergabe_hotel+'&zielgebiets_kenner='+parts[2]+'&detail='+detail+'&showresult=1';
}
function zur_suche(showresult)
{
    window.location.href=uebergabe_hotel+'&showresult='+showresult;
}
function s_liste_tabelle(nurflug,pfad_images)
{
    var str_glhotelTitel="";
    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="regtab2td regtab2tdreg" colspan="3">');
            if(nurflug!=1 && parts_2[2]<40000){
                document.write('<a href="javascript:s_hliste('+i+',0);" class="reglreg" '+str_glhotelTitel+'>'+parts_2[0]+'</a>');
            }
            else {
                document.write(parts_2[0]);
            }
            document.write('</td>');
            document.write('</tr>');
        }
        else{
            document.write('<tr>');
            document.write('<td class="regtab2td regtab2tdziel">');
            document.write('<a href="javascript:oHIB(\'\',\''+parts_2[3]+'\',\''+parts_2[3]+'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'\',\'region\');"><img src="'+pfad_images+'/info.gif" border="0" align="absmiddle" class="reginfo" alt="Länderinfo für diese Region aufrufen"></a>');
            document.write('<a href="javascript:s_hliste('+i+','+nurflug+');" class="reglziel" '+str_glhotelTitel+'>'+parts_2[0]+'</a>');
            document.write('</td>');
            document.write('<td class="regtab2td regtab2tdziel">');
            np=String(parseInt(parts_2[1]/5)*5);
            if(np<80)np=0;
            document.write('<img src="'+pfad_images+'/'+np+'.gif" alt="" border="0" width="134" height="22">');
            document.write('</td>');
            document.write('<td class="regtab2td regtab2tdziel" align="right">');
            //Schweizer Franken in IBE Basic
            if(ibeCountry==2){
                if(showWaehrung & 1){
                    document.write('<a href="javascript:s_hliste('+i+','+nurflug+');" class="reglpreis">ab '+parts_2[4]+',-&euro;</a>');
                }
                if (showWaehrung & 2) {
                    if (showWaehrung & 1) {
                        document.write('<br>');
                    }
                    document.write('<a href="javascript:s_hliste('+i+','+nurflug+');" class="reglpreisfW">');
                    if (uFaktor != 1 && ibeCurrency == '') {
                        document.write('ca ');
                    }
                    if (ibeCurrency == '') {
                        document.write(Math.ceil(uFaktor*parts_2[4])+'.-CHF</a>');    
                    } else {
                        document.write('ab '+parts_2[4]+'.-'+ibeCurrency+'</a>');
                    }
                }
                if(showWaehrung & 4){
                    document.write('<br><a href="javascript:s_hliste('+i+','+nurflug+');" class="reglpreis">ab '+parts_2[4]+',-&euro;</a>');
                }
            }
            else{
                document.write('<a href="javascript:s_hliste('+i+','+nurflug+');" class="reglpreis">ab '+parts_2[4]+',-&euro;</a>');
            }
            document.write('</td>');
            document.write('</tr>');
        }
    }
}