

function getDestination(destination) {
  var i = destination.selectedIndex
  if (destination.options[i].value != -1)
  {
  	top.location.href = destination.options[i].value;
  }
  else
  	{alert("Du bedes vælge en destinatination.");}
}


function openDestination(destination) {
      var i = destination.selectedIndex
      if (destination.options[i].value != -1)
      {
      	location=destination.options[i].value;
      }
      else
      	{alert("Du bedes vælge en destinatination.");}
}

