﻿    startList = function() {
        if (document.all && document.getElementById) {
            navRoot = document.getElementById("countries");
            for (i = 0; i < navRoot.childNodes.length; i++) {
                node = navRoot.childNodes[i];
                if (node.nodeName == "LI") {
                    node.onmouseover = function() {
                        this.className += " over";
                    }
                    node.onmouseout = function() {
                        this.className = this.className.replace(" over", "");
                    }
                }
            }
        }
    }
    window.onload = startList;

/*
 *open secure window for login functionality
*/

function securelogin()
 {
   securelogin = window.open ("https://lounge.arkadin.com/MloginEN.aspx","securelogin","location=1,status=1,scrollbars=1,toolbar=1,menubar=1,directories=1,resizable=1,width=925,height=815");
 }


function securelogin2()
 {
   securelogin2 = window.open ("https://lounge.arkadin.com/PloginEN.aspx","securelogin2","location=1,status=1,scrollbars=1,toolbar=1,menubar=1,directories=1,resizable=1,width=925,height=815");
 }