// MOUSEOVER

function msover(id,ref) {
    document.images[id].src = '_bin-auto/' + ref;
}

function msout(id,ref) {
    document.images[id].src = '_bin-auto/' + ref;
}


// Dropdown-menu

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


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

function doWrite(theText) {
  if (theText.value == '') {
     theText.value = 'Indtast e-mail-adresse her'
  }
}

// POP-UP

function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=389,height=166,left = 362,top = 159');");
}