            if(location.hostname=="www.ontarget.es") {
                window.location="http://www.ontarget-signs.com";
            };
            function selectIdioma(idioma) {
                var cookieName = "selectedlang";
                var cookieValue = idioma;
                var nDays = 30;
	 
                var today = new Date();
                var expire = new Date();
                if (nDays==null || nDays==0) nDays=1;
                expire.setTime(today.getTime() + 3600000*24*nDays);
                document.cookie = cookieName+"="+escape(cookieValue)
                    + ";expires="+expire.toGMTString();

                testIdioma();
            }

            function iniIdioma(){
                var cookieName = "selectedlang";
                var theCookie=""+document.cookie;
                var ind=theCookie.indexOf(cookieName);


                if (ind==-1 || cookieName=="")
                {
                    
                    var idiomaNavegador = new String;
                    if (navigator.language){
                        idiomaNavegador = navigator.language;
                    } else
                    {
                        idiomaNavegador = navigator.browserLanguage;
                    }
                    idioma=idiomaNavegador.substr(0, 2);
                    //alert("Idioma ["+idioma+"]");
                    selectIdioma(idioma);
                }
	 
        }

        function testIdioma(){
            var cookieName = "selectedlang";
            var theCookie=""+document.cookie;
            var ind=theCookie.indexOf(cookieName);
            if (ind==-1 || cookieName=="") return "";
            var ind1=theCookie.indexOf(';',ind);
            if (ind1==-1) ind1=theCookie.length;

            var idioma = unescape(theCookie.substring(ind+cookieName.length+1,ind1));
           // if(idioma in {'es':'', 'en':'','fr':'','de':'','pt':''}) {
            //    document.location.href = "empresa.php?lang="+idioma;
            //}
        }
        iniIdioma();
        testIdioma();

