<!--
function launchwin(winurl,winname,winfeatures)
{
	newwin = window.open(winurl,winname,winfeatures)
}

function oeffnen()
{
	nr=document.forms[0].elements[0].selectedIndex;
	datei=document.forms[0].elements[0].options[nr].value;
	rahmen="toolbar=no,width=800,height=750,screenX=0,screenY=0,scrollbars=yes,resizable=no";
	var fenster=window.open(datei,'titel',rahmen);
	
}

function MakeArray(n){
   this.length = n
   return this
}
var urls = new MakeArray(6)
urls[0] = "" //leere URL für oberste Option
urls[1] = "http://www.atlantic-hotels.de/airport/hotel-english/index.php"
urls[2] = "http://www.atlantic-hotels.de/galopprennbahn/hotel-english/index.php"
urls[3] = "http://www.atlantic-hotels.de/sailcity/hotel-english/index.php"
urls[4] = "http://www.atlantic-hotels.de/universum/hotel-english/index.php"
urls[5] = "http://www.atlantic-hotels.de/vegesack/hotel-english/index.php"
function laden(f){
   if (f.auswahl.selectedIndex>0)
      location.href = urls[f.auswahl.selectedIndex]
}
//-->