﻿// JavaScript Document
<!--
function openList(id1){
  control = document.getElementById(id1).style.display
  if (control == "block"){
    document.getElementById(id1).style.display = "none";
    document.getElementById('m' + id1).style.backgroundPosition = "0 0px";
  }
  else {
    for (i=1;i<=7;i++){
      document.getElementById(i).style.display = "none";
      document.getElementById('m' + i).style.backgroundPosition = "0 0px";
    }
    document.getElementById(id1).style.display = "block";
    document.getElementById('m' + id1).style.backgroundPosition = "0 -60px";
  }
}
//-->
<!--
function openListNews(id1){
  control = document.getElementById(id1).style.display
  if (control == "block"){
    document.getElementById(id1).style.display = "none";
    document.getElementById('n' + id1).style.backgroundPosition = "0 0px";
  }
  else {
    for (i=1;i<=2;i++){
      document.getElementById(i).style.display = "none";
      document.getElementById('n' + i).style.backgroundPosition = "0 0px";
    }
    document.getElementById(id1).style.display = "block";
    document.getElementById('n' + id1).style.backgroundPosition = "0 -60px";
  }
}
    
// redirect prokom domæner
if (window.location.host == "www.prokom.dk") {}
else {
    
    if (window.location.href == "http://www.mobikom.dk/" || window.location.href == "http://mobikom.dk/") {
    window.location.href = "http://www.prokom.dk/Default.aspx?ID=15";
  }
  else if (window.location.href == "http://www.alcateltelefoner.dk/") {
    window.location.href = "http://www.prokom.dk/Default.aspx?ID=19";
  }
  else {
    window.location.href = window.location.protocol + "//www.prokom.dk" + window.location.pathname;
  }
    
    //alert("r");
}
    
//-->
