function changeImages() {
  if (document.images) {
    for (var i=0; i<changeImages.arguments.length; i+=2) {
      document[changeImages.arguments[i]].src = eval(changeImages.arguments[i+1] + ".src");
    }
  }
}

//Funktion för att få upp en skrivardialogruta.
function printPage(){
  if(window.print){
    window.print();
  }
  else {
    alert("Printing Instructions:\n\n - If you are using a Macintosh, please select \"Print\" from the \"File\" menu.\n - If you are using Windows, right click the page and select \"Print\" from the pop-up menu.");
  }
}

// Rensa textfält när det är focus på dem
function clearDefault(el) {
  if (el.defaultValue==el.value) el.value = ""
}


// Öppna nytt fönster
function New_window(theURL,winName,features) {
  		window.open(theURL,winName,features);
}