
// Izveido aicinājumu izmantot drošu pārlūkrpogrammu.
function iealert() {
  if (window.navigator.appName=="Microsoft Internet Explorer") {
    alert_box = document.createElement("div");
    var getFirefox= document.createElement("img");
    var sauklis   = document.createElement("p");
    var ffp       = document.createElement("p");
    var saite     = document.createElement("a");
    var closePasive = document.createElement("img");
    saite.href    = "http://www.getfirefox.com";
    getFirefox.src= "/images/getFirefox.gif";
    getFirefox.alt= "Get Firefox now!";
    ffp.style.textAlign = "center";
    saite.appendChild(getFirefox);
    sauklis.appendChild(document.createTextNode("Pilnvērtīgai lapas aplūkošanai iesakām izmantot W3C savietojamu pārlūkrpogrammu."));
    ffp.appendChild(saite);
    closePasive.src = "/images/ClosePopupInactive.gif";
    closePasive.onclick = hideIeAlert;
    closePasive.style.position = "absolute";
    closePasive.style.right = "5px";
    alert_box.appendChild(closePasive);
    alert_box.appendChild(sauklis);
    alert_box.appendChild(ffp);
    alert_box.style.position = "absolute";
    alert_box.style.left  = "auto";
    alert_box.style.right = "1%";
    alert_box.style.top   = "auto";
    alert_box.style.bottom = "auto";
    alert_box.style.width = "25%";
    alert_box.style.zIndex= "2";
    alert_box.style.backgroundColor = "white";
    alert_box.style.borderWidth="1px";
    alert_box.style.borderColor="black";
    alert_box.style.borderStyle="solid";
    alert_box.style.padding= "0.5em";
    alert_box.style.margin = "1em";
    document.body.insertBefore(alert_box,document.body.firstChild);
    window.setTimeout(hideIeAlert, 10000);
  }
}

function hideIeAlert() {
  alert_box.style.display = "none";
}