

// dropdown-menu

function dropdown(form){
  var URL = document.form.videoselect.options[document.form.videoselect.selectedIndex].value;
  window.location.href = URL;
}


function doClear(theText) {
  if (theText.value == theText.defaultValue) {
     theText.value = ''
  }
}

function doWriteNavn(theText) {
  if (theText.value == '') {
     theText.value = 'Navn'
  }
}

function doWriteMail(theText) {
  if (theText.value == '') {
     theText.value = 'E-mail-adresse'
  }
}
