function surftoquick(form,id) {
 var myindex=form[id].selectedIndex;
 form[id].selectedIndex = 0;
 var myurl=form[id].options[myindex].value;

 if(myurl == "- -" || myurl == "-%20-")
   return;
 
 
   if(myurl.indexOf('__##__')!=-1){
    var tmp_array = myurl.split('__##__');
    myurl = tmp_array[0];
    var mytarget = tmp_array[1];
    //wir brauchen keine unterscheidung zwischen verschiedenen popups,
    //könnten sie aber hier mit hilfe des targets implementieren
   }else{
    location=myurl;
   }
 
 
}