//Byter bakgrundsfärg på inputfält (focus)
function changeBgColor(id){
	document.getElementById(id).style.backgroundColor = "#4a4a4a";
}
//Byter bakgrundsfärg på inputfält (onblur)
function changeBackBgColor(id){
	document.getElementById(id).style.backgroundColor = "#2f2f2f";
}

//Tillåter tabbning i textfält
function AllowTabCharacter() {
   if (event != null) {
      if (event.srcElement) {
         if (event.srcElement.value) {
            if (event.keyCode == 9) {  // tab character
               if (document.selection != null) {

                  document.selection.createRange().text = '\t';
                  event.returnValue = false;
               }
               else {
                  event.srcElement.value += '\t';
                  return false;
               }
            }
          }
      }
   }
}


