// Popup um einen Link bestaetigen zu lassen
function msg_popup(text,url) {
   Check = confirm(text);

   if(Check == true)
      this.location.href = url;
}

function jump (control) {

   if (control.value != "0") {location = control.value;}

   return 0;
}


function bookmark() {
 if (document.all) {  window.external.AddFavorite(location.href, document.title); }
 else { alert('Netscape users, Please use CTRL + D   /   Bitte benutzen Sie die Tasten Strg + D wenn Sie mit Netscape unterwegs sind !'); }
}


function go_to(control) {

   if (control.value != "nothing") {
      location.href = control.value;
   }
}
